Skip to main content
POST
/
v1
/
reports
Create Report
curl --request POST \
  --url https://api-sandbox.y.uno/v1/reports \
  --header 'Content-Type: application/json' \
  --header 'X-Organization-Code: <x-organization-code>' \
  --data '
{
  "type": "TRANSACTIONS",
  "start_date": "2026-03-01T00:00:00.000Z",
  "end_date": "2026-03-31T23:59:59.000Z",
  "account_id": "YOUR_ACCOUNT_ID",
  "transaction_type": "PURCHASE,REFUND,CAPTURE"
}
'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "type": "<string>",
  "status": "IN_PROCESS",
  "start_date": "<string>",
  "end_date": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "expires_at": "2023-11-07T05:31:56Z"
}

Headers

X-Organization-Code
string
required

Required for all Reports API endpoints.

Body

application/json
type
enum<string>
required
Available options:
PAYMENTS,
TRANSACTIONS,
PAYOUTS,
SETTLEMENTS,
TRANSACTION_RECONCILIATION,
COMMUNICATIONS
start_date
string
required

Must be exactly 24 characters

Required string length: 24
Example:

"2026-03-01T00:00:00.000Z"

end_date
string
required

Must be exactly 24 characters

Required string length: 24
Example:

"2026-03-31T23:59:59.000Z"

account_id
string

Comma-separated UUIDs for multiple accounts

payment_status
string

Comma-separated: CREATED,SUCCEEDED,DECLINED,CANCELED,REFUNDED

transaction_type
string

Comma-separated: PURCHASE,REFUND,CAPTURE,CANCEL,VERIFY

currency
string

Comma-separated ISO 4217 codes

country
string

Comma-separated ISO 3166-1 codes

Response

201 - application/json

Report created

id
string<uuid>
type
string
status
enum<string>
Available options:
IN_PROCESS,
COMPLETED,
FAILED
start_date
string
end_date
string
created_at
string<date-time>
expires_at
string<date-time>