Create a webhook
How to create a webhook via API
To create a new webhook, send a POST
request to the /api/webhooks
endpoint, passing the resource arguments in the request body.
Request
POST https://yourdomain.commercelayer.io/api/webhooks
Arguments
Body Parameter | Type | Required |
---|---|---|
type |
| Required |
attributes.name |
| Optional, default is "webhook |
attributes.topic |
| Required |
attributes.callback_url |
| Required |
attributes.include_resources |
| Optional |
attributes._disable |
| Optional |
attributes._enable |
| Optional |
attributes.reference |
| Optional |
attributes.reference_origin |
| Optional |
attributes.metadata |
| Optional |
Example
The following request creates a new webhook:
Last updated