createWallet

The createWallet mutation creates a new wallet on a single entity.

Currencies Supported

Currency Code (ISO4217)Currency Name
USDUnited States Dollar
CADCanadian Dollar
EUREuro
GBPBritish Pound Sterling
MXNMexican Peso
AUDAustralian Dollar
CNHChinese Yuan (Offshore)
HKDHong Kong Dollar
SGDSingapore Dollar
PLNPolish Zloty

Parameters

ParameterTypeRequired
entity_idUUIDtrue
currencyISO4217true

GraphQL

mutation createWallet (
    $entity_id: UUID!
    $currency: ISO4217!
) {
    createWallet (
        entity_id: $entity_id
        currency: $currency
    )
}
Language
Click Try It! to start a request and see the response here!