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",
"payer": {
"address": "123 Main Street",
"birthdate": "1990-05-15T00:00:00.000Z",
"city": "Madrid",
"country": "ES",
"documentNumber": "12345678A",
"documentType": "NATIONAL_ID",
"email": "[email protected]",
"name": "John",
"phone": "+34612345678",
"postalCode": "28001",
"surname": "Doe"
}
}
'{
"order": {
"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"
},
"paymentUrl": "https://payment-gateway.example.com/pay/abc123"
}Create a new card payin order. If payer data is not provided, the payer will be the account owner.
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",
"payer": {
"address": "123 Main Street",
"birthdate": "1990-05-15T00:00:00.000Z",
"city": "Madrid",
"country": "ES",
"documentNumber": "12345678A",
"documentType": "NATIONAL_ID",
"email": "[email protected]",
"name": "John",
"phone": "+34612345678",
"postalCode": "28001",
"surname": "Doe"
}
}
'{
"order": {
"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"
},
"paymentUrl": "https://payment-gateway.example.com/pay/abc123"
}API Key for accessing management endpoints
Funding details
5000
EUR, USD "EUR"
"CARD-PAY-2025-001234"
"https://example.com/payment/failed"
"https://example.com/payment/success"
Show child attributes
"123 Main Street"
"1990-05-15T00:00:00.000Z"
"Madrid"
"ES"
"12345678A"
NATIONAL_ID, RESIDENCE_CARD, PASSPORT, DRIVING_LICENSE, CIF "NATIONAL_ID"
"John"
"+34612345678"
"28001"
"Doe"
Created
Show child attributes
"2025-01-15T10:30:00.000Z"
"/api/v1/account/orders/e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b"
"Transaction Type"
"2025-01-15T10:35:00.000Z"
"e5f6a7b8-c9d0-4e1f-2a3b-4c5d6e7f8a9b"
"PAY-2025-001234"
"2025-01-15T10:35:00.000Z"
"PENDING"
"TRANSACTION_TYPE"
"2025-01-15T10:30:05.000Z"
"https://payment-gateway.example.com/pay/abc123"