Deposits

Topping up your sendcash balance

Before initiating a wire-out transaction you need to deposit funds in naira. You can check the bank details to top up your Sendcash balance by:

getDepositDetails.gql
query { 
   getDepositDetails {
     accountName
     accountNumber
     bankName
     id
  }
}

Alternatively, if you have the id you can query the node field:

nodeDepositDetails.gql

node(id: "VHlwZXM6OlB1NGZlYMGNhZTg5Y2I") {
    ... on DepositAccount {
      accountName
      accountNumber
      bankName
      id
    }
}

You can use the query below to check your Naira balance

getNairaBalance.gql
query { 
   getNairaBalance
}

Last updated