Skip to main content
POST
/
api
/
v1
/
account
/
users
/
{uid}
/
accounts
/
{aid}
/
bank-payouts
Create bank payout
curl --request POST \
  --url https://sandbox-revo-api.raliopay.com/api/v1/account/users/{uid}/accounts/{aid}/bank-payouts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "code2fa": "123456",
  "description": "Payment for services rendered",
  "origin": {
    "currency": "EUR",
    "amount": 1000
  },
  "recipient": {
    "accountNumber": "ES9121000418450200051332",
    "address": "Calle Gran Via 123",
    "beneficiaryType": "PERSON",
    "city": "Barcelona",
    "country": "ES",
    "currency": "EUR",
    "documentNumber": "87654321B",
    "name": "Maria",
    "postalCode": "08001",
    "routingData": "IBAN",
    "documentType": "NATIONAL_ID",
    "phone": "+34612345678",
    "relation": "FRIEND",
    "surname": "Garcia"
  },
  "reference": "PAY-2025-001234"
}
'
{
  "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",
  "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"
}

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

Payout details

code2fa
string
required
Example:

"123456"

description
string
required
Example:

"Payment for services rendered"

origin
object
required
recipient
object
required
reference
string
required
Example:

"PAY-2025-001234"

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"