Webhook endpoints
Through the Tango API webhook, you gain versatile control and visibility over your event subscriptions. You can perform a range of actions, including viewing all your subscribed events, inspecting specific subscriptions, initiating new event subscriptions, conducting event tests, and much more. Below, you'll find an exhaustive list of the available endpoints to empower you in managing your webhook integration effectively:
We currently offer the following endpoints for Tango webhooks:
Endpoint | Purpose | Parameters |
---|---|---|
GET {URI}/webhooks | Get all subscriptions | - prevCursor - nextCursor - maxResults - url - headerName - headerValue - categories - eventTypes - expiresAtFrom - expiresAtTo - createdAtFrom - createdAtTo |
POST {URI}/webhooks | Create subscriptions | - url - headers (name, value) - categories - eventTypes - signingCertificate |
GET {URI}/webhooks/eventtypes | Get the event types of all your webhook subscriptions. | -prevCursor -nextCursor -maxResults -category |
GET {URI}/webhooks/{webhookId} | Get a subscription | webhookId |
DELETE {URI}/webhooks/{WebhookId} | Delete a subscription | webhookId |
PATCH {URI}/webhooks/{webhookId} | Update a subscription | - webhookId - url - headers (name, value) - Categories - eventTypes - signingCertificate |
GET {URI}/webhooks/{webhookId}/events | Get subscription events | - webhookId - fromRevision - toRevision - prevCursor - nextCursor - maxResults |
POST {URI}/webhooks/{WebhookId}/renew | Renew a subscription | webhookId |
POST {URI}/webhooks/{webhookId}/replay | Redeliver subscription events | - webhookId - fromRevision _ toRevision |
POST {URI}/webhooks/{webhookId}/tests/{testName} | Execute a test event | - webhookId - testName |
Updated 2 days ago