GET
/scim/v2/Users

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Access Key > as bearer

In: header

Query Parameters

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

OK

{
  "totalResults": 0,
  "startIndex": 0,
  "itemsPerPage": 0,
  "schemas": [
    "string"
  ],
  "Resources": [
    {
      "schemas": [
        "string"
      ],
      "id": "string",
      "userName": "string",
      "meta": {
        "created": {},
        "location": "string",
        "lastModified": {},
        "resourceType": "string"
      },
      "emails": [
        {
          "value": "string",
          "primary": true,
          "type": "string"
        }
      ],
      "name": {
        "givenName": "string",
        "familyName": "string",
        "middleName": "string"
      },
      "active": true,
      "displayName": "string",
      "detail": "string",
      "attributes": {}
    }
  ],
  "detail": "string",
  "status": 0
}

Was this helpful?