Testing Webhooks
You can use the following API to test your webhook integrations including the signature verification.
Below API must be triggered with the following HTTP payload.
{
"message": "This is webhook test message payload"
}
Remember, this endpoint requires signature verification like any other webhook messages.
When this API is called, a subsequent test webhook will be triggered towards your configured URL handlers. Please refer Supported Events page for more information about the expected event structure.
post
Header parameters
authorizationstringOptional
Authorization header containing your API Token
x-alg-noncestringOptional
Nonce used to generate the payload signature
x-alg-signaturestringOptional
Payload signature
datestringOptional
Date of the request un UTC/GMT
Responses
201Success
post
POST /v1/partner/webhook-test HTTP/1.1
Host: api-url
Accept: */*
201Success
No content
Last updated
Was this helpful?