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"
  }
]

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., CBU/ALIAS(AR), PIX(BR)).

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).