RocketCOMS

Authentication

All API operations are performed over HTTPS. RocketCOMS supports two authentication methods: access tokens and API keys. All API calls must include a valid access token or API key.

Access Tokens

If you’re using a JWT access token to authenticate requests, API calls must include a Bearer Authorization header with your access token.

Authorization: Bearer <access_token>

API Keys

If you’re using API keys to authenticate requests, API calls must include a Basic Authorization header (Base64-encoded) with your API key and Secret key.

Authorization: Basic <encodedString>

where <encodedString> is your <api-key>:<api-secret> string encoded using Base64 encoding