Events
Create an event
This endpoint creates an endpoint event
POST
/
v1
/
projects
/
{projectID}
/
events
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": {}
}
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 \
--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": {}
}