Webhook Subscribers
Update a Webhook Subscriber
Update an existing Webhook Subscriber by its ID
post/webhook-subscribers/{id}
Path parameters
idstring required
Request body
Example request
{
"recipientUrl": "https://my-be-url.com/webhooks",
"subscribedTo": [
"customer.created"
]
}Response
OK
Example response
{
"createdAt": "2024-02-18T12:00:00Z",
"updatedAt": "2024-02-21T12:15:00Z",
"metadata": {
"key1": "value1",
"key2": "value2"
},
"active": true,
"recipientUrl": "https://my-backend.com/webhooks",
"subscribedTo": [
"customer.created",
"customer.updated"
]
}Changes
No recorded changes to this endpoint across all 1 revision of this API.