Enable SCIM
Last updated
Last updated
SCIM API is enabled for all customers with Enterprise subscription by default. To manage users with SCIM in your Qase Enterprise account you will need to create a new API token:
Navigate to Workspace > SCIM page:
Now you can create a new SCIM API Token.
To ensure that everything is working as expected you can make the following request:
GET: https://app.qase.io/scim/v2/Users
Request Headers:
Accept
application/scim+json
Content-Type
application/json
Authorization
Bearer + API Token from the previous step
📘
Base URL and Authorization type
As you can see from the previous example the base URL for SCIM API is https://app.qase.io/scim/v2/Users. The API token must be included in every call to SCIM via Authorization header with type Bearer
🚧
HTTPS protocol
We support HTTPS requests only. Requests to HTTP protocol are redirected to HTTPS - please note that this redirection response can be handled incorrectly by certain tools.
curl example