Skip to main content
GET
/
api
/
v1
/
account
/
transfers
/
{oid}
Get transfer order details
curl --request GET \
  --url https://sandbox-revo-api.raliopay.com/api/v1/account/transfers/{oid} \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": "2025-01-15T10:30:00.000Z",
  "destination": {
    "currency": "CURRENCY",
    "amount": 1000
  },
  "displayType": "Transfer",
  "failedAt": "2025-01-15T10:30:05.000Z",
  "fee": {
    "currency": "CURRENCY",
    "amount": 1000
  },
  "fx": {
    "pair": "CURRENCY/CURRENCY",
    "rate": 1.08,
    "timestamp": "2025-01-15T10:30:00.000Z"
  },
  "id": "d4e5f6a7-b8c9-4d0e-1f2a-3b4c5d6e7f8a",
  "origin": {
    "currency": "CURRENCY",
    "amount": 1000
  },
  "recipient": {
    "accountId": "b2c3d4e5-f6a7-4b8c-9d0e-1f2a3b4c5d6e"
  },
  "reference": "Payment for services rendered",
  "sender": {
    "accountId": "a1b2c3d4-e5f6-4a7b-8c9d-0e1f2a3b4c5d"
  },
  "settledAt": "2025-01-15T10:30:05.000Z",
  "state": "SETTLED",
  "type": "TRANSFER",
  "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

oid
string
required

Transfer Order ID

Response

OK

createdAt
string
Example:

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

destination
object
displayType
string
Example:

"Transfer"

failedAt
string
Example:

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

fee
object
fx
object
id
string
Example:

"d4e5f6a7-b8c9-4d0e-1f2a-3b4c5d6e7f8a"

origin
object
recipient
object
reference
string
Example:

"Payment for services rendered"

sender
object
settledAt
string
Example:

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

state
string
Example:

"SETTLED"

type
string
Example:

"TRANSFER"

updatedAt
string
Example:

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