Authenticate REST API requests with a bearer token issued from your 3Common dashboard.
All 3Common REST API requests are authenticated with a bearer token in the
Authorization header.
Authorization: Bearer YOUR_API_KEY
If you omit the header or pass an invalid token, the API responds with
401 Unauthorized.
Tokens are shown once at creation time. Store the secret in a password manager or a secret store (Vault, Doppler, AWS Secrets Manager). Never commit it to a public repository or paste it into client-side code.
To rotate a key:
Revoking a key takes effect immediately. Any in-flight requests using the
revoked key will start failing with 401 Unauthorized.