Get available reports

GET
/reports

This endpoint will allow you to fetch a list containing all the reports you've generated. Use the id of the report to download it using the /reports/{id}/download endpoint.

By default, it will return a complete list of reports for your entire customer hierarchy.

Providing a customerId in the query will allow you to limit the list to reports available for one particular merchant.

AuthorizationBearer <token>

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

In: header

Query Parameters

customerId?string

The ID of a specific merchant within your customer hierarchy

Formatuuid

Response Body

application/json

application/json

application/json

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