post https://sandbox.external.routefusion.com/graphql (47 disregard)
The createWallet mutation creates a new wallet on a single entity.
Currencies Supported
Currency Code (ISO4217) | Currency Name |
---|---|
USD | United States Dollar |
CAD | Canadian Dollar |
EUR | Euro |
GBP | British Pound Sterling |
MXN | Mexican Peso |
AUD | Australian Dollar |
CNH | Chinese Yuan (Offshore) |
HKD | Hong Kong Dollar |
SGD | Singapore Dollar |
PLN | Polish Zloty |
Parameters
Parameter | Type | Required |
---|---|---|
entity_id | UUID | true |
currency | ISO4217 | true |
GraphQL
mutation createWallet (
$entity_id: UUID!
$currency: ISO4217!
) {
createWallet (
entity_id: $entity_id
currency: $currency
)
}