Search balance accounts by name
curl -X GET "https://test-api.kashier.io/v2/account/search"{ "data": [ { "accountId": "ACC-XXXX-XXX-01", "accountName": "Primary account" }, { "accountId": "ACC-XXXX-XXX-02", "accountName": "Secondary account" } ]}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.
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
Query Parameters
Search term matched against the account name.
Maximum number of results to return.
Response Body
application/json
application/json
application/json
application/json
application/json
Export balance accounts GET
Exports the merchant's balance accounts and their balances as a spreadsheet. Pass email to have the export delivered to that address instead of returned in the response.
Get the primary account's payout method GET
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 accoun…