Post Groups Search

Post Groups Search

This endpoint is responsible for fetching a list of groups with specific criteria. For more information, check the specification: https://tools.ietf.org/html/rfc7644#section-3.4.3.

Request
URI
POST
https://{api_host}//usergroup/t/{tenant}/scim/v2/Groups/.search
COPY
Path Parameters
string
tenant
Required

The VMware Identity Services tenant ID

tenant example
my-tenant

Request Body
SearchRequestMedia of type(s) application/scim+json
Required
{
    "attributes": [
        "string"
    ],
    "count": 100,
    "filter": "string",
    "sortOrder": "descending",
    "startIndex": 1,
    "excludedAttributes": [
        "string"
    ],
    "sortBy": "string",
    "id": "string",
    "externalId": "string",
    "meta": {
        "location": "string",
        "version": "string",
        "lastModified": "string",
        "resourceType": "string",
        "created": "string"
    },
    "schemas": [
        "string"
    ]
}
array of string
attributes
Optional

A multi-valued list of strings indicating the names of resource attributes to return in the response overriding the set of attributes that would be returned by default

integer As int32 As int32
count
Optional

An integer indicating the desired maximum number of query results per page

string
filter
Optional

The filter string used to request a subset of resources

string
sortOrder
Optional

A string indicating the order in which the sortBy parameter is applied

Possible values are : ascending, descending,
integer As int32 As int32
startIndex
Optional

An integer indicating the 1-based index of the first query result

array of string
excludedAttributes
Optional

A multi-valued list of strings indicating the names of resource attributes to be removed from the default set of attributes to return

string
sortBy
Optional

A string indicating the attribute whose value shall be used to order the returned responses

string
id
Optional

The unique identifier of the SCIM resource

string
externalId
Optional

The SCIM resource external identifier

meta
Optional

meta

array of string
schemas
Optional

The SCIM resource schema URIs

Authentication
This operation uses the following authentication methods.
Responses
200

Successfully fetched the list of groups.

Returns GroupListMedia of type(s) application/scim+json
{
    "resources": [
        {
            "members": [
                {
                    "value": "42dc6b2c-4517-4e88-b1a7-79a1a1f88b5b",
                    "$ref": "https://example.com/v2/User/42dc6b2c-4517-4e88-b1a7-79a1a1f88b5b",
                    "display": "Example User"
                }
            ],
            "displayName": "Example Group",
            "id": "string",
            "externalId": "string",
            "meta": {
                "location": "string",
                "version": "string",
                "lastModified": "string",
                "resourceType": "string",
                "created": "string"
            },
            "schemas": [
                "string"
            ]
        }
    ],
    "itemsPerPage": 0,
    "totalResults": 0,
    "startIndex": 0,
    "id": "string",
    "externalId": "string",
    "meta": {
        "location": "string",
        "version": "string",
        "lastModified": "string",
        "resourceType": "string",
        "created": "string"
    },
    "schemas": [
        "string"
    ]
}
array of GroupMedia
resources
Optional

A list of returned groups

integer As int32 As int32
itemsPerPage
Optional

The number of resources returned in a list response page

integer As int32 As int32
totalResults
Optional

The total number of results returned by the list or query operation

integer As int32 As int32
startIndex
Optional

The 1-based index of the first result in the current set of list results

string
id
Optional

The unique identifier of the SCIM resource

string
externalId
Optional

The SCIM resource external identifier

meta
Optional

meta

array of string
schemas
Optional

The SCIM resource schema URIs