{merchantId}
, {placeId}
, {dataDomain}
) to distinguish different requests. For example setting up https://example.com/webhook/{merchantId}/{placeId}/?domain={dataDomain} as the URL would lead to requests such as https://example.com/webhook/5dea5ec89e01eb0015219138/5dea5ec89e01eb0015219139/?domain=bills.curl --location --request POST 'https://your-api-server.com' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"merchantId": "5dea5ec89e01eb0015219138",
"placeId": "5dea5ec89e01eb0015219139",
"dataDomain": "bills",
"data": [
{
"id": 7031
}
]
}'
{}