v1

latestOpenAPI 3.0.02026-07-24126202516.7 KB
Sub-wallets

Create Sub-wallet

Create a sub-wallet for a user's wallet account.This is specified by the wallet account_id. Use sub-wallets as a part of building your own scheduling and workflow. Create as many as you want to manage, with no limits to the amount.

post/sub_wallets

Request body

account_idstring required

Wallet Account Id for which sub-wallet is to be created.

namestring

sub-wallet name

Example request

{
  "account_id": "86991380-90a5-013a-57cc-5e50adfe91ad",
  "name": "Investment Fund"
}

Response

OK

Example response

{
  "sub_wallets": {
    "id": "c66a1bec-4ca5-418c-8b0a-5513819576ee",
    "name": "Investment Fund",
    "active": true,
    "currency": "AUD"
  }
}