e3d7945a88fd
Retrieve report status
Retrieves the current processing status of a reconciliation report generation request.
Poll this endpoint after calling the generate report endpoint until status is READY, EMPTY, or ERROR. When the report is ready, the response includes a pre-signed download_url and a filename. The download URL is valid until download_url_expires_at (approximately 15 minutes after generation). Download the report before it expires — to get a new download URL after expiry, call the generate report endpoint again. If status is ERROR or EMPTY, stop polling and submit a new report generation request if needed.
Connection type: Reservations connection type is required to access this endpoint.
This endpoint is rate-limited to 10 requests per minute.
Path parameters
The unique identifier of the reconciliation report generation request, returned by the generate report endpoint.
Headers
Bearer token for authentication.
API version to use.
Response
Report status retrieved successfully.
Example response
{
"meta": {
"ruid": "string"
},
"data": {
"request_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"status": "READY",
"updated_at": "2026-06-10T08:50:48Z",
"download_url_expires_at": "2026-06-11T08:50:48Z",
"filename": "reconciliation-report.csv",
"download_url": "https://example.com/path"
}
}