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

Authorizations

Authorization
string
header
required

access token

Body

application/json
url
string<uri>
required

The publicly accessible HTTPS endpoint that will receive webhook POST requests

Example:

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

Response

URL successfully registered

The response is of type string.

Example:

"URL successfully registered"