Where credentials come from
Terminals are created in the merchant dashboard under Terminals. There is no API to provision one — a person with access to your merchant account has to do it.
Create one terminal per physical till or per running POS instance. That is what makes
GET /v1/transactions useful for end-of-day reconciliation, and it means losing one device does
not force you to re-credential the whole store.
What the merchant dashboard can do
Create
Issues a new username and password. The password is displayed once.
Rotate
Issues a new password for the same username. The old one stops working immediately — there
is no grace period, so roll it out to the device first.
Suspend
Blocks the terminal without deleting its history. Use this the moment a device goes missing.
What the merchant identity is not
You never tell the API which merchant you are. Your merchant, your tax registration number, and your terminal are all resolved from the credentials you authenticated with, and there is no request field that can override them. That is why a compromised terminal password can only ever take payments to your own merchant account — where they are visible in your dashboard and reversible — and can never read or refund another merchant’s transactions.Every authentication failure looks the same
401 as “these credentials are dead.” Stop retrying, stop the sale, and prompt
staff to re-pair the terminal. Retrying a 401 never helps and looks exactly like an attack.
There is no verify endpoint
To check a credential pair, ask for a single transaction:GET /health is not a credential check — it is unauthenticated and answers 200 no matter
what you send.
Now take a payment
The charge request, field by field.

