GET
/
reports
/
{report_id}
/
executions
curl --request GET \
  --url https://api.{gr4vy_id}.gr4vy.app/reports/{report_id}/executions \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "type": "report-execution",
      "id": "fe26475d-ec3e-4884-9553-f7356683f7f9",
      "created_at": "2013-07-16T19:23:00.000+00:00",
      "updated_at": "2013-07-16T19:23:00.000+00:00",
      "status": "succeeded",
      "context": {
        "reference_timestamp": "2013-07-16T19:23:00.000+00:00",
        "reference_timezone": "Europe/London"
      },
      "report": {
        "type": "report",
        "id": "fe26475d-ec3e-4884-9553-f7356683f7f9",
        "merchant_account_id": "default",
        "name": "Failed Authorizations 042022",
        "creator_id": "bd5d40d1-913b-419c-bd62-84efc46e0026",
        "creator_display_name": "John Doe",
        "creator_type": "user"
      }
    }
  ],
  "limit": 1,
  "next_cursor": "ZXhhbXBsZTE",
  "previous_cursor": "<string>"
}

This endpoint requires the reports.read scope.

Authorizations

Authorization
string
headerrequired

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

report_id
string
required

The unique ID for a report.

Query Parameters

cursor
string

A cursor that identifies the page of results to return. This is used to paginate the results of this API.

For the first page of results, this parameter can be left out. For additional pages, use the value returned by the API in the next_cursor field. Similarly the previous_cursor can be used to reverse backwards in the list.

limit
integer
default: 20

Defines the maximum number of items to return for this request.

Response

200 - application/json
items
object[]

A list of report executions.

limit
integer
default: 20

The limit applied to request. This represents the number of items that are at maximum returned by this request.

next_cursor
string | null

The cursor that represents the next page of results. Use the cursor query parameter to fetch this page of items.

previous_cursor
string | null

The cursor that represents the next page of results. Use the cursor query parameter to fetch this page of items.