post https://sandbox.external.routefusion.com/graphql (00 disregard)
The createWalletTransfer mutation creates a transfer to move funds from one wallet to another. finalizeWalletTransfer must be called to execute the transfer. getTransferQuote must be called in the wallet to wallet transfer flow.
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
  )
}