Skip to main content
The Report object represents an asynchronous report generation request. Reports are created with filters and parameters, processed in the background, and made available for download once complete. Use reports for reconciliation, accounting, and operational analysis.
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-3456789abcde
string
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: TRANSACTION
string
Current report generation status.Values: PROCESSING, SUCCEEDED, FAILED
  • PROCESSING. Report is being generated. Poll until status changes.
  • SUCCEEDED. Report is ready for download via download_url.
  • FAILED. Generation failed (invalid filters, internal error). Check date_range and filters for issues.
Example: SUCCEEDED
object
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, ZIP
  • CSV. Single CSV file. Best for smaller reports.
  • ZIP. Compressed archive containing the CSV. Used automatically for large reports.
Example: CSV
string
ISO 8601 timestamp of when the report was requested.Example: 2026-03-10T09:00:00.000Z

Example

  • Reports. How to generate and use reports in Yuno