List company order reports
curl --request GET \
--url https://staging.api.prexsell.com/v2/reports/company/orders{
"data": {
"reports": [
{
"id": "clxyz1234567890abc",
"status": "Completed",
"orderBy": "DepartureDate",
"createdAt": "2025-01-01T00:00:00.000Z",
"startDate": "2025-01-01T00:00:00.000Z",
"endDate": "2025-12-31T23:59:59.999Z",
"expiresAt": "2025-01-08T00:00:00.000Z",
"downloadedAt": null
}
],
"total": 1
}
}Reports
List company order reports
Returns a paginated list of order report records for the authenticated company, ordered by creation date descending. Does not include download URLs โ fetch GET /orders/:id/download for a fresh signed URL.
GET
/
v2
/
reports
/
company
/
orders
List company order reports
curl --request GET \
--url https://staging.api.prexsell.com/v2/reports/company/orders{
"data": {
"reports": [
{
"id": "clxyz1234567890abc",
"status": "Completed",
"orderBy": "DepartureDate",
"createdAt": "2025-01-01T00:00:00.000Z",
"startDate": "2025-01-01T00:00:00.000Z",
"endDate": "2025-12-31T23:59:59.999Z",
"expiresAt": "2025-01-08T00:00:00.000Z",
"downloadedAt": null
}
],
"total": 1
}
}โI
