Subscribe

Read on how to get our webhooks

Create a webhook subscription to receive POST requests from the platform (called webhooks) when events associated with your application occur. Webhooks are sent to a URL which you provide when creating a webhook subscription.

POST /subscriptions

curl --location -g --request POST '{{url}}/subscriptions' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
 
"end_point": "url",
  "secret": "UUID"
  }'

Last updated