Absorb SCIM API (v2)
Download OpenAPI specification:Download
Get access/refresh token.
Request Body schema: application/json
The authentication request.
| username required | string non-empty The username. |
| password required | string non-empty The password. |
Responses
Response Schema: application/json
| token | string Access token that represents an authenticated user. It is required by protected API endpoints. The token must be included in the
|
| scope | Array of strings The scope granted to the authentication token. |
| tokenExpiryDate | string <date-time> The JWT tokens expiration date |
Request samples
- Payload
Content type
application/json
{- "username": "string",
- "password": "string"
}Response samples
- 200
Content type
application/json
{- "token": "string",
- "scope": [
- "string"
], - "tokenExpiryDate": "2019-08-24T14:15:22Z"
}