Skip to main content
POST
/
api
/
v1
/
account
/
users
/
{uid}
/
accounts
/
{aid}
/
card-payins
Create card payin
curl --request POST \
  --url https://sandbox-revo-api.raliopay.com/api/v1/account/users/{uid}/accounts/{aid}/card-payins \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "amount": 5000,
  "currency": "EUR",
  "reference": "CARD-PAY-2025-001234",
  "urlFailed": "https://example.com/payment/failed",
  "urlSuccess": "https://example.com/payment/success"
}
'
{
  "order": {
    "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"
  },
  "paymentUrl": "https://payment-gateway.example.com/pay/abc123"
}

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

Funding details

amount
integer
required
Example:

5000

currency
enum<string>
required
Available options:
EUR,
USD
Example:

"EUR"

reference
string
required
Example:

"CARD-PAY-2025-001234"

urlFailed
string
required
Example:

"https://example.com/payment/failed"

urlSuccess
string
required
Example:

"https://example.com/payment/success"

payer
object

Response

Created

order
object
paymentUrl
string
Example:

"https://payment-gateway.example.com/pay/abc123"