Payments

Manage payment processing or access wallet balances for quick transactions.

PIN Verification

Before you can perform any action using your wallet, you will have to verify your pin. This gives you a passport which will be used as a ticket_id for some requests involving the wallet

How to verify your PIN

To verify your PIN, make a POST request to the /bw/verifypin endpoint. Here is a sample request using axios:

js
const response = axios.post( "<BASE_URL>/bw/verifypin", { pin: 0000, // The pin of your wallet account }, { headers: { accept: "application/json", authorization: "Bearer <API-KEY>", "content-type": "application/json", }, } );