Skip to main content
DELETE
/
v2
/
register
/
companies
/
webhooks
/
{event}
Remove
curl --request DELETE \
  --url https://api.sandbox.wepayout.com.br/v2/register/companies/webhooks/{event} \
  --header 'Authorization: Bearer <token>'
No Content

Remove Webhook URL

This endpoint allows removing the webhook URL associated with a specific event.
  • The event parameter must be provided in the path
  • Once deleted, the event will no longer send notifications to any registered URL

Path Parameters

event
string
required
The event type for which to remove the webhook URLExample: onboarding

Response

Returns 204 No Content on successful deletion.

Request Example

curl --request DELETE \
  --url https://api.sandbox.wepayout.com.br/v2/register/companies/webhooks/onboarding \
  --header 'Authorization: Bearer {token}'
No Content