GET
/scim/v2/ResourceTypes

Authorization

AuthorizationRequiredBearer <token>

< Project ID >:< Access Key > as bearer

In: header

curl -X GET "https://api.descope.com/scim/v2/ResourceTypes" \
  -H "Authorization: Bearer <token>"

OK

{
  "values": [
    {
      "schemas": [
        "string"
      ],
      "id": "string",
      "name": "string",
      "description": "string",
      "endpoint": "string",
      "schema": "string"
    }
  ]
}

Was this helpful?