GET
/
api
/
v1
/
fiatAccounts
/
List Fiat Accounts
curl --request GET \
  --url https://skala-sandbox.ripio.com/api/v1/fiatAccounts/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "fiatAccountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "fiatAccountFields": {},
    "createdAt": "2023-11-07T05:31:56Z",
    "status": "PROCESSING",
    "accountType": "<string>",
    "customerId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
]

Authorizations

Authorization
string
header
required

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

Query Parameters

customerId
string<uuid>

Filter fiat accounts by the customer's unique identifier.

accountType
string

Filter fiat accounts by its type.

Response

A list of fiat accounts.

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:
PROCESSING,
ENABLED,
DISABLED
Example:

"PROCESSING"

accountType
string
required

Type of the fiat account.

customerId
string<uuid>
required

The unique identifier of the customer owning this account.