Get the primary account's payout method
curl -X GET "https://test-api.kashier.io/v2/account/payoutMethod"{ "message": "success", "data": { "method": "bankAccount", "payoutFields": { "bankName": "AAIB", "bankBranch": "Your branch", "accountHolderName": "Your company name", "accountNumber": "0100010001000", "branchCode": "3" } }}Retrieves the payout method configured on your primary balance account — the bank account or wallet that settled money is paid out to. The fields inside payoutFields depend on method: a bank account carries the bank, branch, account holder, and account number, while a wallet carries the wallet number.
Authorization
secretKey Merchant secret key used to identify the merchant, obtained from Kashier's dashboard. Pass the raw secret key value in the Authorization header (NOT a "Bearer" token).
In: header
Response Body
application/json
application/json
application/json
application/json
application/json
Search balance accounts by name GET
Looks up your balance accounts by name and returns just the id and name of each match — a lightweight read for populating an account picker before calling one of the detail reads.
Get balance record details GET
Retrieves one balance record in full — the amount, whether it credited or debited the account, the value date the money counted from, and the origin/originReference pointing back at whatever produc…