SearchRequest
The SCIM search request object. To be used in requests via POST HTTP method
{
"customSchemaExtensionTypes": "string",
"count": 50,
"excludedAttributes": "string",
"filter": "domain co \"test.com\"",
"startIndex": 1,
"sortOrder": "descending",
"attributes": "distinguishedName",
"sortBy": "distinguishedName"
}
customSchemaExtensionTypes
The number of found resources to return starting from the given startIndex. This is used for pagination. Default is 20
excludedAttributes
The search filter. When specified, only resources matching the filter expression will be returned. The filter must comply with the SCIM specification. Only 'eq','co','sw','gt','ge','lt' and 'le' are currently supported as operators
Offset of the first resource to return in the list of found resources. This is used for pagination. Default is 0
The direction the resources returned should be sorted in. Allowed values are "ascending" and "descending"
The attributes to be returned. When specified, the returned resource will contain the minimal set of resource attributes plus the attributes or sub-attributes explicitly requested.
The attribute to use to sort the found resource