GET
/scim/v2/Groups

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Access Key > as bearer

In: header

Query Parameters

filterstring
startIndexinteger
Format: "int32"
countinteger
Format: "int32"
excludedAttributesstring
curl -X GET "https://api.descope.com/scim/v2/Groups?filter=string&excludedAttributes=string" \
  -H "Authorization: Bearer <token>"

OK

{
  "totalResults": 0,
  "startIndex": 0,
  "itemsPerPage": 0,
  "schemas": [
    "string"
  ],
  "Resources": [
    {
      "displayName": "string",
      "schemas": [
        "string"
      ],
      "id": "string",
      "members": [
        {
          "value": "string",
          "display": "string"
        }
      ],
      "meta": {
        "created": {},
        "location": "string",
        "lastModified": {},
        "resourceType": "string"
      },
      "externalId": "string",
      "detail": "string"
    }
  ],
  "detail": "string"
}

Was this helpful?