Cluster authentication service reference (CAS)

Steaming Token (Access Token)

get
Https://<url>
/stream/token/v2/
<url>/stream/token/v2/

Example - acquiring an Access Token

cUrl(Bash)
curl -iL --request GET --url https://YOUR_CAS_URL/stream/token/v2/ --header 'auth-api-key: API_KEY' --header 'auth-api-secret: API_SECRET'
The Access Token is a JWT token - more about JWT you can read - here.
A successful response will look like that:
{
"token": "eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9...."
}
You can get your API_KEY and API_SECRET in your private area, here.