The Webhooks API provides a mechanism for subscribing to events that occur within the Firstup platform to receive http payloads when those events occur. Use webhook subscriptions to trigger actions on your own application.
Webhook events are sent by the Firstup platform as POST requests to your webhook url. Each event contains a payload specific to that event. More information about the webhooks system, including a list of events that can be subscribed to, is available on the Webhooks page
Fetchs multiple subscription records at a time, and can be paginated using cursor pagination.
Security
oauth2_as_a_user(Required scopes: webhooks.read) or oauth2_as_a_server(Required scopes: webhooks.read)
- US1https://partner.socialchorus.com/v2/webhooks/subscriptions
- US2https://partner.us2.onfirstup.com/v2/webhooks/subscriptions
- EUhttps://partner.onfirstup.eu/v2/webhooks/subscriptions
- oauth2_as_a_user
- oauth2_as_a_server
curl -i -X GET \
'https://partner.socialchorus.com/v2/webhooks/subscriptions?page.size=0&page.number=0' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "data": [ { … } ], "meta": { "pagination": { … } } }