🛡️ Security Best Practices
Credential Security
Section titled “Credential Security”API Key
Section titled “API Key”Your API token is transmitted in plain text with every request via the Authorization header. It must be treated with the same level of care as a password.
Recommendations:
- Never commit it to a version control system (Git or otherwise)
- Store it in an environment variable or a secret manager (Vault, AWS Secrets Manager, etc.)
- Never expose it on the client side (browser, mobile application)
Webhook Token
Section titled “Webhook Token”The auth_token defined during the creation of a webhook is used to verify the authenticity of incoming requests.
Recommendations:
- Store it securely, just as you would with your API key