Adullam Authentication Overview
Adullam uses phone + password to issue short‑lived Bearer access tokens. Use Get access token to obtain a token and Rotate access token to replace it with a new one.- Get access token — Exchange phone and password for an access token via
POST /v1/auth/token. Use the token in theAuthorization: Bearer …header (orx-auth) for all other API calls. - Rotate access token — Replace the current token with a new one via
POST /v1/auth/rotate. The previous token is invalidated. Use rotation periodically or after a suspected compromise.
Flow
- Get token:
POST /v1/auth/tokenwithphoneandpassword. Response includes the access token. Phone must match the pattern for Côte d’Ivoire (e.g.+22507123456). - Call APIs: Send
Authorization: Bearer YOUR_TOKEN(orx-auth: YOUR_TOKEN) on every request to payments, transfers, and account. - Rotate when needed:
POST /v1/auth/rotatewith the current token in the header; use the new token from the response.
Support
Need help? Contact us by email (support@adullam.dev), WhatsApp (chat), or Telegram (@adullam_official).