Skip to main content
GET
/
api
/
v1
/
account
/
card-payins
/
{oid}
Get card payin order details
curl --request GET \
  --url https://sandbox-revo-api.raliopay.com/api/v1/account/card-payins/{oid} \
  --header 'Authorization: Bearer <token>'
{
  "card": {
    "cardBin": "424242",
    "cardPan": "5123456789123456",
    "expiration": "2025-12-31T23:59:59.000Z"
  },
  "createdAt": "2025-01-15T10:30:00.000Z",
  "destination": {
    "currency": "EUR",
    "amount": 1000
  },
  "displayType": "Card Pay In",
  "failedAt": "2025-01-15T10:30:05.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
  },
  "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"
  },
  "recipient": {
    "accountId": "b2c3d4e5-f6a7-4b8c-9d0e-1f2a3b4c5d6e"
  },
  "reference": "Card payment for order #12345",
  "settledAt": "2025-01-15T10:30:05.000Z",
  "state": "SETTLED",
  "type": "CARD_PAY_IN",
  "updatedAt": "2025-01-15T10:30:05.000Z"
}

Authorizations

Authorization
string
header
required

API Key for accessing management endpoints

Path Parameters

oid
string
required

Card Payin Order ID

Response

OK

card
object
createdAt
string
Example:

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

destination
object
displayType
string
Example:

"Card Pay In"

failedAt
string
Example:

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

fee
object
fx
object
id
string
Example:

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

origin
object
payer
object
recipient
object
reference
string
Example:

"Card payment for order #12345"

settledAt
string
Example:

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

state
string
Example:

"SETTLED"

type
string
Example:

"CARD_PAY_IN"

updatedAt
string
Example:

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