Events
Fan out an event
This endpoint uses the owner_id to fan out an event to multiple endpoints.
POST
/
v1
/
projects
/
{projectID}
/
events
/
fanout
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": {}
}
Authorizations
Path Parameters
Project ID
Body
application/json
Event Details
The body is of type object
.
Response
201
application/json
Created
The response is of type object
.
Was this page helpful?
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": {}
}