The SCIM API
This API handles Professional User management and follows rules set by the SCIM 2.0. standard. SCIM 2.0 standard specification can be found here:
-
Definitions, Overview, Concepts, and Requirements - https://www.rfc-editor.org/rfc/rfc7642
-
Core Schema - https://www.rfc-editor.org/rfc/rfc7643
-
Protocol - https://www.rfc-editor.org/rfc/rfc7644
Parts of the documentation has been automatically generated based on the OpenApi specification (formerly known as Swagger).
Go to Swagger for a live experience.
Endpoints
Users
GET '*/scim/v2/users'
Returns users specified by SCIM query parameters. Following query parameters are supported:
-
Filter
-
SortBy and SortOrder
-
StartIndex and Count
Query filter currently supports following commands:
-
Equal - "propertyName eq value"
-
Not equal - "propertyName ne value"
-
Contains - "propertyName co value"
-
Starts with - "propertyName sw value"
-
Ends with - "propertyName ew value"
-
Present - "propertyName pr"
-
Greater than - "propertyName gt value"
-
Greater than or equal - "propertyName ge value"
-
Less than - "propertyName lt value"
-
Less than or equal - "propertyName le value"
Following grouping operators are supported:
-
"(" and ")"
Following logical operators are supported:
-
"and"
-
"or"
-
"not"
PUT '*/scim/v2/users/{userId}'
Updates specified user with provided input parameters. The entire provided user is used for the update.