Skip to main content
POST
/
api
/
v1
/
fiatAccounts
/
{fiatAccountId}
/
confirm
Confirm Fiat Account
curl --request POST \
  --url https://skala-sandbox.ripio.com/api/v1/fiatAccounts/{fiatAccountId}/confirm/ \
  --header 'Authorization: Bearer <token>'
{
  "fiatAccountId": "a1b2c3d4-5678-9abc-def0-123456789abc",
  "fiatAccountFields": {
    "alias_or_cvu_destination": "0100000000000000000001"
  },
  "status": "PROCESSING",
  "createdAt": "2026-02-01T12:00:00Z",
  "customerId": "964c8c8c-573d-4f8f-bd2e-8645c3124e74",
  "metadata": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

fiatAccountId
string<uuid>
required

The unique identifier of the fiat account to confirm.

Response

Fiat account confirmed successfully. Status is now PROCESSING.

fiatAccountId
string<uuid>
required

The unique identifier of the fiat account.

fiatAccountFields
object
required

A dictionary containing the details provided for the fiat account.

createdAt
string<date-time>
required

The date and time the fiat account was created (UTC format).

status
enum<string>
required

An enumerated value specifying the fiat account status.

Available options:
UNCONFIRMED,
PROCESSING,
ENABLED,
DISABLED
Example:

"PROCESSING"

paymentMethodType
string
required

Type of the fiat account.

customerId
string<uuid>
required

The unique identifier of the customer owning this account.

metadata
object

Additional metadata associated with the fiat account. For Argentina accounts, this contains pre-validation data (e.g., CVU holder information) returned during account creation.