Skip to main content
GET
/
reports
/
{id}
Retrieves a report
curl --request GET \
  --url https://api.myeasol.com/reports/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "columns": [
      {
        "id": "<string>",
        "name": "<string>",
        "type": "<string>"
      }
    ],
    "filters": [
      {
        "id": "<string>",
        "name": "<string>",
        "type": "<string>",
        "options": [
          "<string>"
        ]
      }
    ]
  }
}
Reports in Easol are your interface to viewing your data. If you know the id of a report you can use this endpoint to get more information like what columns are available if you wanted to filter those in your report run output.

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