Skip to main content
GET
/
api
/
v1
/
fiatAccounts
/
requirements
Retrieve Fiat Account Requirements
curl --request GET \
  --url https://skala-sandbox.ripio.com/api/v1/fiatAccounts/requirements/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "fieldName": "alias_or_cvu_destination",
    "required": true,
    "type": "TEXT"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.ripio.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.

Query Parameters

paymentMethod
string
required

The payment method for which to retrieve requirements (e.g., bank_transfer).

Response

Successfully retrieved fiat account requirements.

fieldName
string
required

The technical name of the required field used within the API.

required
boolean
required

Indicates whether the field is mandatory (true) or optional (false).

type
string
required

The data type expected for the field value (e.g., TEXT, NUMBER).