POST
/
webhooks
/
test
/
trigger
/
:id
curl --request POST \
  --url https://base_url/api/v1/webhooks/test/trigger/:id \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "event_data": {}
}'
{
  "message": "Successfully triggered webhook."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
event_data
object

Data to inject into event.data. When the webhook will be triggered the event will have this data.

Response

200
application/json
Sales tax registration response
message
string
Example:

"Successfully triggered webhook."