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
string
Required
attributes.name
string
Optional, default is "webhook
attributes.topic
string
Required
attributes.callback_url
string
Required
attributes.include_resources
array
Optional
attributes._disable
boolean
Optional
attributes._enable
boolean
Optional
attributes.reference
string
Optional
attributes.reference_origin
string
Optional
attributes.metadata
object
Optional
Example
The following request creates a new webhook:
Last updated