Qyra
ReferenceSCIM

Get schema

Get individual SCIM schema

GET/api/v1/scim/v2/Schemas/{schemaId}

Authentication: personal access token. The spec defines an api_key security scheme — send an Authorization: ApiKey <your-personal-access-token> header (value format: ApiKey <your key>). A session_cookie scheme (connect.sid) exists for browser sessions. Operations in this spec declare security: [], an artifact of the upstream spec generator — authentication is still enforced by the server.

Path parameters

NameTypeRequiredDescription
schemaIdstringYesschema identifier

Responses

200 — Ok

{
  "schemas": [
    "urn:ietf:params:scim:schemas:core:2.0:Schema"
  ],
  "id": "string",
  "meta": {
    "version": "string",
    "location": "string",
    "lastModified": "2024-01-01T00:00:00.000Z",
    "created": "2024-01-01T00:00:00.000Z",
    "resourceType": "string"
  },
  "name": "string",
  "description": "string",
  "attributes": [
    {
      "name": "string",
      "type": "string",
      "multiValued": true,
      "description": "string",
      "required": true,
      "canonicalValues": [
        "string"
      ],
      "caseExact": true,
      "mutability": "readOnly",
      "returned": "always",
      "uniqueness": "none",
      "subAttributes": [
        {}
      ]
    }
  ]
}