curl --request POST \
--url https://dashboard.getconvoy.io/api/v1/projects/{projectID}/events \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"app_id": "<string>",
"custom_headers": {},
"data": {},
"endpoint_id": "<string>",
"event_type": "<string>",
"idempotency_key": "<string>"
}'
{
"message": "<string>",
"status": true,
"data": {}
}
This endpoint creates an endpoint event
curl --request POST \
--url https://dashboard.getconvoy.io/api/v1/projects/{projectID}/events \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{
"app_id": "<string>",
"custom_headers": {},
"data": {},
"endpoint_id": "<string>",
"event_type": "<string>",
"idempotency_key": "<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?