Platform's webhooks

Some features can send JSON-encoded data to API endpoints defined in platform’s Back Office when their data is updated.


Available features

Authentication

If the API you want the data to be sent to require using an API Key, it can be defined in platform's Back Office, and will be sent along with the data in the following ways:

  • as X-API-KEY header
  • as Bearer token in authorization header
  • as apiKey property directly in the data

Sample request made by the webhook

curl --request POST \
  --url 'https://{YOUR_API_URL}' \
  --header 'X-API-KEY: {API_KEY}' \
  --header 'Authorization: Bearer {API_KEY}' \
  --data '{ "apiKey": "{API_KEY}", … }'