createWalletTransfer

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

Parameters

ParameterTypeRequired
source_amountStringfalse
destination_amountStringfalse
source_wallet_idUUIDtrue
desination_wallet_idUUIDtrue

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
  )
}
Language
Click Try It! to start a request and see the response here!