Quickei uses two authentication methods depending on the API you’re using.Documentation Index
Fetch the complete documentation index at: https://developer.quickei.io/llms.txt
Use this file to discover all available pages before exploring further.
Payment Gateway API — Bearer Token
The Payment Gateway API uses OAuth-style bearer tokens. First, exchange your credentials for a token, then include it in subsequent requests.Get your credentials
Log in to your Merchant Dashboard and navigate to Developer API > API Keys. Copy your Client/Primary Key and Secret Key.
Request a token
Call the Access Token endpoint with your credentials.
POS API — HTTP Basic Auth
The POS API uses HTTP Basic Authentication. Encode yourclient_id:client_secret as base64.
Security Best Practices
Keep keys secret
Never expose API keys in client-side code, mobile apps, or public repositories.
Use environment variables
Store credentials in environment variables or a secrets manager — never hardcode them.
Rotate regularly
Regenerate your API keys periodically from the Merchant Dashboard.
Restrict access
Use IP allowlists and limit API key permissions to only what’s needed.

