Skip to main content
POST
/
api
/
v1
/
account
/
users
/
{uid}
/
accounts
/
{aid}
/
transfers
Create transfer
curl --request POST \
  --url https://sandbox-revo-api.raliopay.com/api/v1/account/users/{uid}/accounts/{aid}/transfers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "code2fa": "123456",
  "origin": {
    "currency": "CURRENCY",
    "amount": 1000
  },
  "recipient": {
    "accountId": "b2c3d4e5-f6a7-4b8c-9d0e-1f2a3b4c5d6e"
  },
  "reference": "Payment for services rendered"
}
'
{
  "createdAt": "2025-01-15T10:30:00.000Z",
  "destination": {
    "currency": "CURRENCY",
    "amount": 1000
  },
  "detailUrl": "/api/v1/account/orders/e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b",
  "displayType": "Transaction Type",
  "failedAt": "2025-01-15T10:35:00.000Z",
  "fee": {
    "currency": "CURRENCY",
    "amount": 1000
  },
  "fx": {
    "pair": "CURRENCY/CURRENCY",
    "rate": 1.08,
    "timestamp": "2025-01-15T10:30:00.000Z"
  },
  "id": "e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b",
  "origin": {
    "currency": "CURRENCY",
    "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"
}

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

Path Parameters

uid
string
required

User ID

aid
string
required

Account ID

Body

application/json

Transfer details

code2fa
string
required
Example:

"123456"

origin
object
required
recipient
object
required
reference
string
required
Example:

"Payment for services rendered"

Response

Created

createdAt
string
Example:

"2025-01-15T10:30:00.000Z"

destination
object
detailUrl
string
Example:

"/api/v1/account/orders/e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b"

displayType
string
Example:

"Transaction Type"

failedAt
string
Example:

"2025-01-15T10:35:00.000Z"

fee
object
fx
object
id
string
Example:

"e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b"

origin
object
reference
string
Example:

"PAY-2025-001234"

settledAt
string
Example:

"2025-01-15T10:35:00.000Z"

state
string
Example:

"PENDING"

type
string
Example:

"TRANSACTION_TYPE"

updatedAt
string
Example:

"2025-01-15T10:30:05.000Z"