Skip to main content
GET
/
scim
/
v2
/
Schemas
List or Retrieve schemas
curl --request GET \
  --url https://paradigm.lighton.ai/scim/v2/Schemas \
  --header 'Authorization: Bearer <token>'
{
  "Resources": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "attributes": [
        {
          "name": "<string>",
          "type": "<string>",
          "multiValued": true,
          "description": "<string>",
          "required": true,
          "caseExact": true,
          "mutability": "<string>",
          "returned": "<string>",
          "uniqueness": "<string>"
        }
      ],
      "meta": {
        "location": "<string>",
        "resourceType": "Schema"
      }
    }
  ],
  "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

Resources
object[]
required
schemas
string[]