Authorization header:
Getting a token
Your API credentials are issued from the JobMojito admin. If you don’t have them yet, contact your account manager or support@jobmojito.com.Who the token represents
The token is bound to a merchant account. Most endpoints automatically scope their work to that merchant - you don’t pass amerchant_id yourself. A few service-level integrations may operate across merchants; in those cases the endpoint documents a required merchant_id field and returns 422 if it’s missing.
Authorization errors
| Status | Meaning |
|---|---|
401 | Missing, malformed, or expired token. |
403 | The token is valid but not allowed to perform this action (for example, a non-merchant user). |
Keep your token secret
Treat the token like a password:- Send it only over HTTPS (all JobMojito endpoints are HTTPS-only).
- Store it in a secret manager / environment variable, never in client-side code or version control.
- Rotate it if you suspect it has leaked.