v1
latestOpenAPI 3.0.22026-08-061303782.1 MBWebhooks
Update Webhook
Update an existing Webhook to:
- Enable or disable a Webhook. Disabled webhooks stop receiving events at the configured URL.
- Add authentication to a Webhook
- Override default event filters by specifying the list of events you are interested in receiving
put/webhooks/{webhook_id}
Request body
Example request
{
"enabled_events": [
{
"entity": "transfer",
"types": [
"created"
]
}
],
"url": "https://httpbin.org/post"
}Response
A single Webhook
Example response
{
"enabled_events": [
{
"entity": "transfer",
"types": [
"created"
]
}
]
}