cURL
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!" }
Triggers a test webhook to a registered URL.
access token
The webhook URL to test.
"https://hooks.example.com/order-updates"
Test webhook executed and result returned.
HTTP status code returned by the webhook endpoint.
202
Raw response body from the webhook endpoint (truncated to 1kb).
"success!"