Meta Events
List all meta events
Meta Events
List all meta events
This endpoint fetches meta events with pagination
GET
/
v1
/
projects
/
{projectID}
/
meta-events
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>"
}
}
}
Authorizations
Path Parameters
Project ID
Query Parameters
Available options:
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
Response
200
application/json
OK
Data to be sent to endpoint.
NumTrials: number of times we have tried to deliver this Event to an application
Available options:
linear
, exponential
Available options:
Scheduled
, Processing
, Discarded
, Failure
, Success
, Retry
Was this page helpful?
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>"
}
}
}