Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"Reference": "subscribe-webhook-001",
"WebHooksList": [
{
"EventName": "SHIPMENT_CREATED",
"URL": "www.test.com"
}
]
}
Request samples
curl --location --request POST 'https://partnerapi.flavorcloud.com/Webhooks/Subscribe' \
--header 'Content-Type: application/json' \
--data-raw '{
"Reference": "subscribe-webhook-001",
"WebHooksList": [
{
"EventName": "SHIPMENT_CREATED",
"URL": "www.test.com"
}
]
}'
Responses
application/json {
"Reference": "string",
"Status": "string",
"Message": "string"
}
Modified at 2025-04-28 20:51:30