Skip to main content
GET
/
api
/
v1
/
fiatAccounts
/
List Fiat Accounts
curl --request GET \
  --url https://skala-sandbox.ripio.com/api/v1/fiatAccounts/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "next": "<string>",
  "previous": "<string>",
  "results": [
    {
      "fiatAccountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "fiatAccountFields": {},
      "createdAt": "2023-11-07T05:31:56Z",
      "status": "PROCESSING",
      "paymentMethodType": "<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.

paymentMethodType
string

Filter fiat accounts by its type.

Response

A paginated list of fiat accounts.

count
integer

Total number of items across all pages.

next
string<uri> | null

URL to the next page of results. Null if no next page.

previous
string<uri> | null

URL to the previous page of results. Null if no previous page.

results
object[]

Array of fiat account objects for the current page.