POST/v1.0/auth/tokenRead-only

Get an authentication token (JWT). Note that 'Bearer' text should be added before the JWT token that is returned in this API call upon successful response for the authorizing purposes and any subsequent API calls that are going to be made.

Parameters

bodybodyUserCredentialrequired

User credentials to be authenticated.

cURL
curl -X POST "https://api.kajeet.dev/sentinel-proxy/sentinel/api/v1.0/auth/token" \
  -H "Authorization: Bearer $SENTINEL_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
  "username": "admin@northstar-isd.edu",
  "password": "$SENTINEL_PASSWORD"
}'

Try this operation in the interactive explorer →