/client_api
or the /client_ws
endpoint. You will use your organization’s API key to generate and revoke these tokens. The tokens themselves expire automatically and can also be revoked at any time.
/generate_access_token
and receive a JWT token for a specific client. You can store this JWT on the client side. This endpoint takes in a client ID, a duration in seconds for which the token remains valid, and any metadata you choose to send us in the form of a dictionary. The client ID should be consistent for every user of your application.
/client_api
using the JWT token in the Authorization header like so: Bearer <JWT>
?client_key=<JWT>
Bearer <token>