Skip to main content
POST
/
urls
/
test
Send a test webhook
curl --request POST \
  --url https://webhooks.platform.arb.inc/urls/test \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://hooks.example.com/order-updates"
}
'
{
  "statusCode": 202,
  "body": "success!"
}

Authorizations

Authorization
string
header
required

access token

Body

application/json
url
string<uri>
required

The webhook URL to test.

Example:

"https://hooks.example.com/order-updates"

Response

Test webhook executed and result returned.

statusCode
integer

HTTP status code returned by the webhook endpoint.

Example:

202

body
string

Raw response body from the webhook endpoint (truncated to 1kb).

Example:

"success!"