Skip to main content
GET
/
scim
/
v2
/
ResourceTypes
List or Retrieve resource types
curl --request GET \
  --url https://paradigm.lighton.ai/scim/v2/ResourceTypes \
  --header 'Authorization: Bearer <token>'
{
  "Resources": [
    {
      "id": "<string>",
      "name": "<string>",
      "endpoint": "<string>",
      "description": "<string>",
      "schema": "<string>",
      "meta": {
        "location": "<string>",
        "resourceType": "ResourceType"
      },
      "schemas": [
        "urn:ietf:params:scim:schemas:core:2.0:ResourceType"
      ]
    }
  ],
  "schemas": [
    "urn:ietf:params:scim:api:messages:2.0:ListResponse"
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Resource Types list

Resources
object[]
required
schemas
string[]