Best practices to follow for webhooks

Best practices to follow for webhooks

Keep the flexibility of retrieving unknown fields with the webhook response. As the platform evolves new fields are introduced time to time. Reading of webhook data should not fail while a new parameter is received. For example in Java you can use below property on your objects : 

@JsonIgnoreProperties(ignoreUnknown = true)