Skip to main content
POST
/
urls
/
delete
Delete a webhook URL
curl --request POST \
  --url https://webhooks.platform.arb.inc/urls/delete \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://example.com/webhook"
}
'
"URL successfully deleted"

Authorizations

Authorization
string
header
required

access token

Body

application/json
url
string
required

The webhook URL to delete.

Example:

"https://example.com/webhook"

Response

URL successfully deleted.

The response is of type string.

Example:

"URL successfully deleted"