Skip to main content
POST
/
urls
/
delete
Delete a registered 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://api.example.com/webhooks/arb-platform"
}
'
"URL successfully deleted"

Authorizations

Authorization
string
header
required

access token

Body

application/json
url
string<uri>
required

The webhook URL to delete from the organization's registered endpoints

Example:

"https://api.example.com/webhooks/arb-platform"

Response

URL successfully deleted

The response is of type string.

Example:

"URL successfully deleted"