SCIM
Use these operations to interact with SCIM-provisioned users in Cortex.
Required permissions
Your API key must have the Configure Open ID Connector & SCIM
permission.
Operations
Fetches users based on provided criteria
Returns list of requested users
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
GET /scim/v2/Users HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Accept: */*
text
Gets a user based on provided id
Returns requested user data
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
GET /scim/v2/Users/{id} HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Accept: */*
text
Creates a user based on provided data.
Returns created user data
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
POST /scim/v2/Users HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 6
"text"
text
Updates a user based on provided id and data
Returns updated user data
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
PUT /scim/v2/Users/{id} HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 6
"text"
text
Replaces user details based on provided id and data
Returns patched user data
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
PATCH /scim/v2/Users/{id} HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Content-Type: application/json
Accept: */*
Content-Length: 6
"text"
text
Deletes a user based on provided id
Returns deleted user data
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
DELETE /scim/v2/Users/{id} HTTP/1.1
Host: api.getcortexapp.com
Authorization: Bearer JWT
Accept: */*
text
Last updated
Was this helpful?