curl --request GET \
--url https://dashboard.getconvoy.io/api/v1/projects/{projectID}/meta-events \
--header 'Authorization: <api-key>'{
"message": "<string>",
"status": true,
"data": {
"content": [
{
"attempt": {
"request_http_header": {},
"response_data": "<string>",
"response_http_header": {}
},
"created_at": "<string>",
"deleted_at": "<string>",
"event_type": "<string>",
"metadata": {
"data": [
123
],
"interval_seconds": 123,
"max_retry_seconds": 123,
"next_send_time": "<string>",
"num_trials": 123,
"raw": "<string>",
"retry_limit": 123,
"strategy": "linear"
},
"project_id": "<string>",
"status": "Scheduled",
"uid": "<string>",
"updated_at": "<string>"
}
],
"pagination": {
"has_next_page": true,
"has_prev_page": true,
"next_page_cursor": "<string>",
"per_page": 123,
"prev_page_cursor": "<string>"
}
}
}This endpoint fetches meta events with pagination
curl --request GET \
--url https://dashboard.getconvoy.io/api/v1/projects/{projectID}/meta-events \
--header 'Authorization: <api-key>'{
"message": "<string>",
"status": true,
"data": {
"content": [
{
"attempt": {
"request_http_header": {},
"response_data": "<string>",
"response_http_header": {}
},
"created_at": "<string>",
"deleted_at": "<string>",
"event_type": "<string>",
"metadata": {
"data": [
123
],
"interval_seconds": 123,
"max_retry_seconds": 123,
"next_send_time": "<string>",
"num_trials": 123,
"raw": "<string>",
"retry_limit": 123,
"strategy": "linear"
},
"project_id": "<string>",
"status": "Scheduled",
"uid": "<string>",
"updated_at": "<string>"
}
],
"pagination": {
"has_next_page": true,
"has_prev_page": true,
"next_page_cursor": "<string>",
"per_page": 123,
"prev_page_cursor": "<string>"
}
}
}Project ID
next, prev The end date
A pagination cursor to fetch the next page of a list
The number of items to return per page
A pagination cursor to fetch the previous page of a list
Sort order, values are ASC or DESC, defaults to DESC
The start date
OK
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Data to be sent to endpoint.
NumTrials: number of times we have tried to deliver this Event to an application
linear, exponential Scheduled, Processing, Discarded, Failure, Success, Retry Was this page helpful?