curl --request POST \
--url https://{yourDomain}/api/service/webhook-event/test \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "test",
"date": "<string>",
"payload": {
"test": true,
"date": "<any>"
}
}'
Can be triggered with /merchant/app/send-test-webhook
to test the integration
curl --request POST \
--url https://{yourDomain}/api/service/webhook-event/test \
--header 'Content-Type: application/json' \
--data '{
"id": "<string>",
"type": "test",
"date": "<string>",
"payload": {
"test": true,
"date": "<any>"
}
}'
Data of the webhook event
The body is of type object
.
OK