addBalanceToWallet

The addBalanceToWallet mutation adds the given amount to the wallet balance. This endpoint is only available in the SANDBOX environment.

Parameters

ParameterTypeRequired
wallet_idUUIDtrue
amountStringtrue

GraphQL

mutation addBalanceToWallet(
    $wallet_id: UUID! 
    $amount: String!
  ) {
    addBalanceToWallet(
        wallet_id: $wallet_id
        amount: $amount
    )
}
Language
Click Try It! to start a request and see the response here!