1. Open Balance (V3)

POST {{host}}/v3/profiles/{{profile-id}}/balances

Opens a balance for the specified profile and currency. If the balance already exists, return the existing one.

Request Body

FieldDescriptionFormatRequired
currencybalance currency (ISO 4217 Alphabetic Code)texttrue
typeuse STANDARDtexttrue
namebalance nametextfalse

Response Body

FieldDescriptionFormat
idbalance idinteger
currencybalance currency (ISO 4217 Alphabetic Code)text
typebalance type (standard, savings)text
namebalance nametext
iconemoji stringtext
amount.valueAvailable balance value that can be used to fund transfersdecimal
amount.currencybalance currency (ISO 4217 Alphabetic Code)text
reservedAmount.valueIGNORE
reservedAmount.currencyIGNORE
creationTimedate when balance was createdtimestamp
modificationTimedate when balance was last modifiedtimestamp
visibleif balance is visible for the user or notboolean

Request Body

{"currency"=>"EUR", "type"=>"STANDARD"}

HEADERS

KeyDatatypeRequiredDescription
AuthorizationstringYour access token
Content-Typestring
X-idempotence-uuidstringUnique identifier assigned by you. Used for idempotency check purposes. Should your call fail for technical reasons then you can use the same value again for making a retry call.

RESPONSES

status: Created

{"id":1,"currency":"EUR","type":"STANDARD","name":null,"icon":null,"amount":{"value":0,"currency":"EUR"},"reservedAmount":{"value":0,"currency":"EUR"},"creationTime":"2019-05-05T10:22:49.487533Z","modificationTime":"2021-06-14T11:10:41.055317Z","visible":true}