Reports
GET /reports/exports
Returns the organization's report exports, newest first.
Authorization
JWTKeyAuth Authorization<token>
In: header
Query Parameters
report_types?array<string>
Filter by report type(s)
page?integer
Page number (default: 1)
per_page?integer
Items per page (default: 20, max: 100)
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/reports/exports"{ "items": [ { "completed_at": "string", "created_at": "string", "end_date": "string", "error": "string", "expires_at": "string", "file_size_bytes": 0, "id": "string", "report_type": "string", "row_count": 0, "start_date": "string", "status": "pending" } ], "next": 0, "page": 0, "per_page": 0, "total_pages": 0, "total_rows": 0}