Example #1
0
 /// <summary>
 /// Fetch a single transfer on your account
 /// </summary>
 /// <param name="id">This is the numeric ID of the transfer you want to fetch. It is returned in the call to create a transfer as data.id</param>
 /// <returns>GetSingleTransferResponse</returns>
 public GetSingleTransferResponse GetSingleTransfer(int id) => _api.Get <GetSingleTransferResponse>($"transfers/{id}");
Example #2
0
 /// <summary>
 /// This utility shows you how to fetch all bill categories on your account
 /// </summary>
 /// <returns></returns>
 public GetBillCategoriesResponse GetAllBillCategories() => _api.Get <GetBillCategoriesResponse>("bill-categories");
Example #3
0
 public GetAllWalletBalancesResponse GetAllWalletBalances() => _api.Get <GetAllWalletBalancesResponse>("balances");
Example #4
0
 /// <summary>
 /// Verify transactions using the transaction ID
 /// </summary>
 /// <param name="id">This is the transaction unique identifier. It is returned in the initiate transaction call as data.id</param>
 /// <returns></returns>
 public VerifyTransactionResponse VerifyTransaction(int id) => _api.Get <VerifyTransactionResponse>($"transactions/{id}/verify");
Example #5
0
 public VerifyBVNResponse VerifyBvn(int bvn) => _api.Get <VerifyBVNResponse>($"kyc/bvns/{bvn}");
Example #6
0
 public GetBankBranchesResponse GetBankBranches(int id) => _api.Get <GetBankBranchesResponse>($"banks/{id}/branches");