Managing webhook subscriptions

Retrieve a list of your webhook subscriptions or a specific subscription:

GET /subscriptions

GET /subscriptions/{id}

If your application is integrating via OAuth, you will only be able to see the list of webhook subscriptions created by your application for the specific authorizing user. You will not have access to webhook subscriptions created on behalf of other users or by other applications.

Deleting a webhook subscription also deactivates it:

DELETE /subscriptions/{id}

You can always subscribe to more events using the same callback URL by creating new subscriptions. Currently, you will not be able to remove events from webhook subscriptions. You must delete the subscription and create a new subscription with the updated array of events you would like to subscribe to and activate it again.