Asynchronous processing. Reports are generated asynchronously. After creating a report, poll the Get Report endpoint until
status transitions to SUCCEEDED, then use the download_url to retrieve the file. Large reports may take several minutes to process.Report Types
Yuno supports eleven report types, each designed for a specific reconciliation or analysis use case:
See Reports Fields for the complete column reference for each report type.
Object Fields
string
The unique identifier of the report (UUID).Example:
rpt_e1f2a3b4-c5d6-7890-ef12-3456789abcdestring
The report type, determining the data schema and available columns.Values:
PAYMENT, TRANSACTION, TRANSACTION_RECONCILIATION, SETTLEMENT, COMMUNICATIONS, FRAUD_TRANSACTIONS, PAYOUTS, FEES, AGENDA, SALES_CONCILIATION, ADVANCEMENTSExample: TRANSACTIONstring
Current report generation status.Values:
PROCESSING, SUCCEEDED, FAILEDPROCESSING. Report is being generated. Poll until status changes.SUCCEEDED. Report is ready for download viadownload_url.FAILED. Generation failed (invalid filters, internal error). Checkdate_rangeandfiltersfor issues.
SUCCEEDEDobject
The time window for data included in the report.
object
Optional filters applied to narrow the report data. Available filters vary by report type.
array
The columns included in the report output. If not specified at creation, all available columns for the report type are included.Example:
["payment_id", "status", "amount", "currency", "provider", "created_at"]string
Pre-signed URL to download the report file. Only present when
status is SUCCEEDED. The URL expires after 24 hours.Example: https://reports.y.uno/downloads/rpt_e1f2a3b4-c5d6-7890-ef12-3456789abcde.csv?token=eyJ...string
The file format of the generated report.Values:
CSV, ZIPCSV. Single CSV file. Best for smaller reports.ZIP. Compressed archive containing the CSV. Used automatically for large reports.
CSVstring
ISO 8601 timestamp of when the report was requested.Example:
2026-03-10T09:00:00.000ZExample
Related Endpoints
- Create Report.
POST /v1/reports - Get Report.
GET /v1/reports/{report_id} - List Reports.
GET /v1/reports - Download Report.
GET /v1/reports/{report_id}/download
Related Concepts
- Reports. How to generate and use reports in Yuno