Skip to content

🛡️ Security Best Practices

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)

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