Webhooks - company level
Update a webhook
Make changes to the configuration of the webhook identified in the path. The request contains the new values you want to have in the webhook configuration. The response contains the full configuration for the webhook, which includes the new values from the request.
To make this request, your API credential must have the following roles:
- Management API—Webhooks read and write
patch/companies/{companyId}/webhooks/{webhookId}
Path parameters
companyIdstring required
The unique identifier of the company account.
webhookIdstring required
Unique identifier of the webhook configuration.
Request body
Example request
{
"communicationFormat": "soap",
"sslVersion": "TLSv1.2",
"url": "http://www.adyen.com"
}Response
OK - the request has succeeded.
Example response
{
"communicationFormat": "soap",
"sslVersion": "TLSv1.2",
"url": "http://www.adyen.com"
}