Skip to main content
POST
/
api
/
v1
/
customers
/
{customerId}
/
fiatAccount
Create Deposit Account
curl --request POST \
  --url https://skala-sandbox.ripio.com/api/v1/customers/{customerId}/fiatAccount/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "paymentMethodType": "bank_transfer"
}
'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

customerId
string<uuid>
required

Unique identifier of the customer.

Body

application/json

Payment method type for the deposit account.

paymentMethodType
string
required

The payment method type for the deposit account.

Example:

"bank_transfer"

Response

Provider does not require prior account creation. No action was taken.

The response is of type object.