Table of Contents |
---|
maxLevel | 3 |
---|
outline | true |
---|
style | circle |
---|
|
Warning |
---|
|
Webhooks are in open beta. The events are limited and subject to change. Please don't hesitate to provide feedback or suggestions. If there are events that would be most useful to you, please reach out to us. |
Table of Contents |
---|
maxLevel | 3 |
---|
outline | true |
---|
style | circle |
---|
|
Webhooks allows you to build integrations that subscribe to specific Accelo events. Upon triggering, we'll HTTP POST a payload to your registered callback url containing event meta data and a resource url. The resource url can be used by your application to query the individual resource that fired the event. This is commonly referred to as Notification Webhooks.
...
name | description |
---|
trigger_url | URL we will trigger a HTTP POST to upon firing the registered event. For example, "https://your-domain.com/callback". |
event_id | Unique event identifier. You can grab a list of possible subscription events from the get subscription types endpoint. |
Sample
...
Code Block |
---|
|
POST /api/v0/webhooks/subscriptions HTTP/1.1
Host: your-deployment.api.accelo.com
Content-Type: application/json
{
"trigger_url": "https://your-domain.com/callback",
"event_id": "assign_task"
} |
...