Skip to main content
GET
/
api
/
v1
/
account
/
users
/
{uid}
/
accounts
/
{aid}
/
orders
List account orders
curl --request GET \
  --url https://sandbox-revo-api.raliopay.com/api/v1/account/users/{uid}/accounts/{aid}/orders \
  --header 'Authorization: Bearer <token>'
{
  "orders": [
    {
      "createdAt": "2025-01-15T10:30:00.000Z",
      "destination": {
        "currency": "EUR",
        "amount": 1000
      },
      "detailUrl": "/api/v1/account/orders/e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b",
      "displayType": "Transaction Type",
      "failedAt": "2025-01-15T10:35:00.000Z",
      "fee": {
        "currency": "EUR",
        "amount": 1000
      },
      "fx": {
        "pair": "EUR/USD",
        "rate": 1.08,
        "timestamp": "2025-01-15T10:30:00.000Z"
      },
      "id": "e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b",
      "merchant": {
        "id": 123,
        "name": "<string>"
      },
      "origin": {
        "currency": "EUR",
        "amount": 1000
      },
      "reference": "PAY-2025-001234",
      "settledAt": "2025-01-15T10:35:00.000Z",
      "state": "PENDING",
      "type": "TRANSACTION_TYPE",
      "updatedAt": "2025-01-15T10:30:05.000Z"
    }
  ],
  "pagination": {
    "next": "<string>",
    "numPages": 123,
    "page": 123,
    "pageSize": 123,
    "previous": "<string>",
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

API Key for accessing management endpoints

Path Parameters

uid
string
required

User ID

aid
string
required

Account ID

Query Parameters

page
integer

Page number (default: 1)

pageSize
integer

Page size (default: 30, max: 100)

sort
string

Sort fields (prefix with - for desc): createdAt. Example: sort=createdAt

filter
string

Multiple filters can be applied with field_operator=value format. Fields: state,type,id,direction,originCurrency,destinationCurrency,createdAt,amount. Operators: eq (equals), neq (not equals), gt (greater than), lt (less than), gte (greater or equal), lte (less or equal), like (contains), in (in list), nin (not in list). Examples: state_in=FAILED,SETTLED&type_nin=CARD_PAYIN,CRYPTO_PAYIN&direction_eq=IN&createdAt_gte=2024-01-01&amount_gte=1000

Search by id (UUID) or reference (text). Example: search=PAY-2025

Response

OK

orders
object[]
pagination
object