SearchRequest

SearchRequest
SearchRequest

The SCIM search request object. To be used in requests via POST HTTP method

JSON Example
{
    "customSchemaExtensionTypes": "string",
    "count": 50,
    "excludedAttributes": "string",
    "filter": "domain co \"test.com\"",
    "startIndex": 1,
    "sortOrder": "descending",
    "attributes": "distinguishedName",
    "sortBy": "distinguishedName"
}
string
customSchemaExtensionTypes
Optional

customSchemaExtensionTypes

integer As int32 As int32
count
Optional

The number of found resources to return starting from the given startIndex. This is used for pagination. Default is 20

string
excludedAttributes
Optional

excludedAttributes

string
filter
Optional

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

integer As int32 As int32
startIndex
Optional

Offset of the first resource to return in the list of found resources. This is used for pagination. Default is 0

string
sortOrder
Optional

The direction the resources returned should be sorted in. Allowed values are "ascending" and "descending"

string
attributes
Optional

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.

string
sortBy
Optional

The attribute to use to sort the found resource