curl --request POST \
--url https://dashboard.getconvoy.io/api/v1/projects/{projectID}/events/fanout \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"custom_headers": {},
"data": {},
"event_type": "<string>",
"idempotency_key": "<string>",
"owner_id": "<string>"
}'
{
"message": "<string>",
"status": true,
"data": {}
}
This endpoint uses the owner_id to fan out an event to multiple endpoints.
curl --request POST \
--url https://dashboard.getconvoy.io/api/v1/projects/{projectID}/events/fanout \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"custom_headers": {},
"data": {},
"event_type": "<string>",
"idempotency_key": "<string>",
"owner_id": "<string>"
}'
{
"message": "<string>",
"status": true,
"data": {}
}
Project ID
Event Details
The body is of type object
.
Created
The response is of type object
.
Was this page helpful?