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,
          "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

Authorization
string
headerrequired

Path Parameters

projectID
string
required

Project ID

Query Parameters

direction
enum<string>
Available options:
next,
prev
endDate
string

The end date

next_page_cursor
string

A pagination cursor to fetch the next page of a list

perPage
integer

The number of items to return per page

prev_page_cursor
string

A pagination cursor to fetch the previous page of a list

sort
string

Sort order, values are ASC or DESC, defaults to DESC

startDate
string

The start date

Response

200 - application/json
message
string
status
boolean
data
object