Authenticate a service user and receive a JWT. Send as application/x-www-form-urlencoded.
cURL
curl -sS -X POST https://rcm-api.athelas.com/v1/ambient/api/auth/token \ -H 'Content-Type: application/x-www-form-urlencoded' \ -d 'username={email}&password={password}'
{ "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...", "token_type": "bearer" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Service account username/email
JWT access token
JWT token
bearer
Was this page helpful?