Skip to main content

Absorb SCIM API (v2)

Download OpenAPI specification:Download

Authentication

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 Authorization header in the format:

Authorization: Bearer [token]
scope
Array of strings

The scope granted to the authentication token.

tokenExpiryDate
string <date-time>

The JWT tokens expiration date

Request samples

Content type
application/json
{
  • "username": "string",
  • "password": "string"
}

Response samples

Content type
application/json
{
  • "token": "string",
  • "scope": [
    ],
  • "tokenExpiryDate": "2019-08-24T14:15:22Z"
}