How authentication works
External endpoints are protected by an API key that must be sent in theAuthorization header using the Basic scheme. The value after Basic must be a Base64-encoded credential string.
The credential string is: <client_id>:<api_key>.
Where:
client_idis your assigned client name or identifier.api_keyis your secret key.
Request format
- Build the credential string:
<client_id>:<api_key>. - Base64-encode the credential string.
- Send it in the
Authorizationheader usingBasic.