post https://sandbox.external.routefusion.com/graphql (00 disregard)
The createWallet mutation creates a new wallet on a single entity.
Parameters
Parameter | Type | Required |
---|---|---|
source_amount | String | false |
destination_amount | String | false |
source_wallet_id | UUID | true |
desination_wallet_id | UUID | true |
GraphQL
mutation CreateWalletTransfer(
$destination_amount: String,
$source_amount: String,
$source_wallet_id: UUID,
$destination_wallet_id: UUID
) {
createWalletTransfer(
destination_amount: $destination_amount,
source_amount: $source_amount,
source_wallet_id: $source_wallet_id,
destination_wallet_id: $destination_wallet_id
)
}