API operations related to authentication operations, see the Authentication Process section for a detailed description of the authentication flows available.
Response success
| access_token | string Bearer token to be set in the |
| token_type | string Only |
| expires_in | integer Length of time in seconds that the |
| scope | string The authorization scope of the |
object (User) | |
Malformed request.
Unauthorized access, invalid credentials were used.
Access forbidden. Current token does not have the necessary authority for the operation.
Invalid data was sent.
{- "grant_type": "client_credentials",
- "auth_id": "admin",
- "auth_secret": "password"
}{- "access_token": "MTQ0NjJkZmQ5OTM2NDE1ZTZjNGZmZjI3",
- "token_type": "bearer",
- "expires_in": 3600,
- "scope": "observer",
- "User": {
- "auth_id": "jsmith",
- "AccessLevel": "observer"
}
}Response success
Malformed request.
Unauthorized access, invalid credentials were used.
Access forbidden. Current token does not have the necessary authority for the operation.
Invalid data was sent.
{- "ApiKey": "string"
}{- "status": 200,
- "success": true
}