List Exports
List Exports
GET {{Environment_URL}}/vendors/v1/reports
This endpoint is responsible for retrieving previously requested exports.
It returns a list of export requests with their current status.
Your exported reports can be downloaded via its URL provided in the JSON object at
docs[i].url, which provides a direct download link to the file in the requested format (XLSX or CSV).
Typical use case: when a user wants to monitor the progress of export requests or download completed export files.
Headers
Name
Value
Authorization
Bearer <token>
Query Params
Name
Type
Description
Value
page
number
Current page
0
limit
numer
Number of documents per page
50
Response
{
"page": 1,
"pages": 1,
"docsShown": 2,
"totalDocs": 2,
"docs": [
{
"createdAt": "2025-09-18T09:54:46.261Z",
"updatedAt": "2025-09-18T09:54:47.222Z",
"deletedAt": null,
"internalComment": null,
"metadata": {},
"id": "rpt_01k5e3ywvtj012j87dt7bczk5b",
"status": "CREATED",
"source": "charges",
"format": "xlsx",
"query": {
"currency": "EUR"
},
"url": "{{reportURL}}"
},
{
"createdAt": "2025-09-18T09:35:50.383Z",
"updatedAt": "2025-09-18T09:35:50.856Z",
"deletedAt": null,
"internalComment": null,
"metadata": {},
"id": "rpt_01k5e2w7kmm5gzw0sff8fjpbfe",
"status": "CREATED",
"source": "charges",
"format": "xlsx",
"query": {
"id": "ch_01k5cp4wcz18h06xjb60qtdtk8"
},
"url": "{{reportURL}}"
}
]
}
