Skip to main content
GET
/
api
/
v1
/
merchant
/
user
/
accounts
List merchant user accounts
curl --request GET \
  --url https://sandbox-revo-api.raliopay.com/api/v1/merchant/user/accounts \
  --header 'Authorization: Bearer <token>'
[
  {
    "alias": "<string>",
    "balance": 123,
    "currency": "<string>",
    "id": "<string>",
    "pendingIn": 123,
    "pendingOut": 123,
    "purpose": "<string>",
    "state": "<string>",
    "userId": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://doc.raliopay.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API Key for accessing management endpoints

Query Parameters

sort
string

Sort fields (prefix with - for desc): alias,balance,pendingIn,pendingOut. Example: sort=alias,-balance

filter
string

Multiple filters can be applied with field_operator=value format. Fields: alias,balance,currency,pendingIn,pendingOut,purpose,state. Operators: eq (equals), neq (not equals), gt/lt (greater/less than), gte/lte (greater/less or equal), like/ilike (case sensitive/insensitive contains). Examples: state_eq=ACTIVE&currency_eq=EUR&purpose_eq=OPERATIONAL

Search accounts by id, alias or currency

Response

OK

alias
string
balance
integer
currency
string
id
string
pendingIn
integer
pendingOut
integer
purpose
string
state
string
userId
string