Skip to main content
GET
/
reports
/
files
/
{id}
Retrieve a report file
curl --request GET \
  --url https://api.myeasol.com/reports/files/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "report_id": "<string>",
    "state": "<string>"
  }
}
Once you’ve generated a report run and the state is succeeded you’ll get a result property in your response. That result will be a url referencing this endpoint which you can fetch to get a CSV of your report 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