Get report by ID

GET
/reports/{id}

This endpoint allows fetching the details of a specific report.

Note that this will return the details of the report only. To download the report as a CSV file, use the /reports/{id}/download endpoint.

Provide the id returned when you requested the report.

AuthorizationBearer <token>

OAuth2 password grant - see the documentation in the oAuth2 Authentication section

In: header

Path Parameters

id*string

ID of the report you wish to retrieve

Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://api.sandbox.volt.io/reports/497f6eca-6276-4993-bfeb-53cbbbba6f08"
{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "type": "string",
  "status": "string",
  "createdAt": "2019-08-24T14:15:22Z",
  "generatedAt": "2019-08-24T14:15:22Z"
}