Skip to main content
GET
/
reports
Lists all reports
curl --request GET \
  --url https://api.myeasol.com/reports \
  --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. You can get information about all reports from this endpoint including what columns are available and the name of the report. The most important part is the id property which is what you’ll use when creating a report run.

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

successful

data
object[]