Skip to main content
GET
/
api
/
v1
/
account
/
users
/
{uid}
/
accounts
/
{aid}
/
transfer-capabilities
Get account transfer capabilities
curl --request GET \
  --url https://sandbox-revo-api.raliopay.com/api/v1/account/users/{uid}/accounts/{aid}/transfer-capabilities \
  --header 'Authorization: Bearer <token>'
{
  "accountCurrency": "EUR",
  "internalTransfer": {
    "enabled": true,
    "limits": {
      "max": 2000,
      "min": 0
    }
  },
  "payout": {
    "bank": {
      "destinations": [
        {
          "countries": [
            "DE",
            "ES"
          ],
          "rail": "SEPA"
        }
      ],
      "enabled": true,
      "limits": {
        "max": 2000,
        "min": 0
      },
      "otpRequired": true,
      "thirdPartyAllowed": false
    },
    "crypto": {
      "destinations": [
        {
          "currencies": [
            "USDC"
          ]
        }
      ],
      "enabled": true,
      "limits": {
        "max": 2000,
        "min": 0
      },
      "otpRequired": false,
      "thirdPartyAllowed": false
    }
  }
}

Authorizations

Authorization
string
header
required

API Key for accessing management endpoints

Path Parameters

uid
string
required

User ID

aid
string
required

Account ID

Response

200 - application/json

OK

accountCurrency
string
Example:

"EUR"

internalTransfer
object
payout
object