Skip to main content
GET
/
reports
/
runs
/
{id}
Fetch a report run
curl --request GET \
  --url https://api.myeasol.com/reports/runs/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "report_id": "<string>",
    "state": "<string>",
    "result": "<string>",
    "column_ids": [
      "<string>"
    ],
    "search_query": "<string>",
    "last_updated_since": "<string>",
    "interval_start": "<string>",
    "interval_end": "<string>",
    "filters": {}
  }
}
A report run is the specific instance you create when fetching data from a report via the API. When you create a report run you can use the id in the response to check the status of that run. Once the run has succeeded you’ll be able to use the result to fetch the contents of the report.

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

successful

data
object