openapi: 3.2.0 info: title: LiteLLM SCIM API description: "Enterprise Edition \n\nProxy Server to call 100+ LLMs in the OpenAI format. [**Customize Swagger Docs**](https://docs.litellm.ai/docs/proxy/enterprise#swagger-docs---custom-routes--branding)\n\n\U0001F449 [```LiteLLM Admin Panel on /ui```](/ui). Create, Edit Keys with SSO. Having issues? Try [```Fallback Login```](/fallback/login)\n\n\U0001F4B8 [```LiteLLM Model Cost Map```](https://models.litellm.ai/).\n\n\U0001F50E [```LiteLLM Model Hub```](/ui/model_hub_table). See available models on the proxy. [**Docs**](https://docs.litellm.ai/docs/proxy/ai_hub)" version: 1.95.0 x-operator: institution x-provenance: method: probed source: https://llmproxy.uva.nl/openapi.json retrieved: '2026-08-19' note: Document is generated by the LiteLLM proxy software the University of Amsterdam self-hosts; the deployment, the key issuance and the host (llmproxy.uva.nl, UvA Azure) are the institution's. servers[] added by API Evangelist because the served document omits it; nothing else altered. servers: - url: https://llmproxy.uva.nl description: University of Amsterdam / Amsterdam University of Applied Sciences shared AI gateway tags: - name: scim paths: /scim/v2: get: description: 'Base SCIM v2 endpoint for resource discovery per RFC 7644 Section 4. Returns a ListResponse of ResourceTypes supported by this SCIM service provider. Identity providers (Okta, Azure AD, etc.) use this endpoint for resource discovery.' operationId: get_scim_base_scim_v2_get parameters: - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '200': content: application/json: schema: {} description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Get Scim Base tags: - scim /scim/v2/Groups: get: description: Get a list of groups according to SCIM v2 protocol operationId: get_groups_scim_v2_Groups_get parameters: - in: query name: startIndex required: false schema: default: 1 minimum: 1 title: Startindex type: integer - in: query name: count required: false schema: default: 10 maximum: 100 minimum: 1 title: Count type: integer - in: query name: filter required: false schema: anyOf: - type: string - type: 'null' title: Filter - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '200': content: application/json: schema: $ref: '#/components/schemas/SCIMListResponse' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Get Groups tags: - scim post: description: Create a group according to SCIM v2 protocol operationId: create_group_scim_v2_Groups_post parameters: - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature requestBody: content: application/json: schema: $ref: '#/components/schemas/SCIMGroup' required: true responses: '201': content: application/json: schema: $ref: '#/components/schemas/SCIMGroup' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Create Group tags: - scim /scim/v2/Groups/{group_id}: delete: description: Delete a group according to SCIM v2 protocol operationId: delete_group_scim_v2_Groups__group_id__delete parameters: - in: path name: group_id required: true schema: title: Group ID type: string - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '204': description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Delete Group tags: - scim get: description: Get a single group by ID according to SCIM v2 protocol operationId: get_group_scim_v2_Groups__group_id__get parameters: - in: path name: group_id required: true schema: title: Group ID type: string - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '200': content: application/json: schema: $ref: '#/components/schemas/SCIMGroup' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Get Group tags: - scim patch: description: Patch a group according to SCIM v2 protocol operationId: patch_group_scim_v2_Groups__group_id__patch parameters: - in: path name: group_id required: true schema: title: Group ID type: string - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature requestBody: content: application/json: schema: $ref: '#/components/schemas/SCIMPatchOp' required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/SCIMGroup' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Patch Group tags: - scim put: description: Update a group according to SCIM v2 protocol operationId: update_group_scim_v2_Groups__group_id__put parameters: - in: path name: group_id required: true schema: title: Group ID type: string - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature requestBody: content: application/json: schema: $ref: '#/components/schemas/SCIMGroup' required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/SCIMGroup' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Update Group tags: - scim /scim/v2/ResourceTypes: get: description: 'SCIM ResourceTypes endpoint per RFC 7644 Section 4. Returns a ListResponse of all resource types supported by this service provider.' operationId: get_resource_types_scim_v2_ResourceTypes_get parameters: - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '200': content: application/json: schema: {} description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Get Resource Types tags: - scim /scim/v2/ResourceTypes/{resource_type_id}: get: description: Get a single ResourceType by ID per RFC 7644. operationId: get_resource_type_scim_v2_ResourceTypes__resource_type_id__get parameters: - in: path name: resource_type_id required: true schema: title: ResourceType ID type: string - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '200': content: application/json: schema: {} description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Get Resource Type tags: - scim /scim/v2/Schemas: get: description: 'SCIM Schemas endpoint per RFC 7643 Section 7. Returns a ListResponse of all schemas supported by this service provider.' operationId: get_schemas_scim_v2_Schemas_get parameters: - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '200': content: application/json: schema: {} description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Get Schemas tags: - scim /scim/v2/Schemas/{schema_id}: get: description: Get a single Schema by its URI per RFC 7643 Section 7. operationId: get_schema_scim_v2_Schemas__schema_id__get parameters: - in: path name: schema_id required: true schema: title: Schema URI type: string - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '200': content: application/json: schema: {} description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Get Schema tags: - scim /scim/v2/ServiceProviderConfig: get: description: Return SCIM Service Provider Configuration. operationId: get_service_provider_config_scim_v2_ServiceProviderConfig_get parameters: - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '200': content: application/json: schema: $ref: '#/components/schemas/SCIMServiceProviderConfig' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Get Service Provider Config tags: - scim /scim/v2/Users: get: description: Get a list of users according to SCIM v2 protocol operationId: get_users_scim_v2_Users_get parameters: - in: query name: startIndex required: false schema: default: 1 minimum: 1 title: Startindex type: integer - in: query name: count required: false schema: default: 10 maximum: 100 minimum: 1 title: Count type: integer - in: query name: filter required: false schema: anyOf: - type: string - type: 'null' title: Filter - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '200': content: application/json: schema: $ref: '#/components/schemas/SCIMListResponse' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Get Users tags: - scim post: description: Create a user according to SCIM v2 protocol operationId: create_user_scim_v2_Users_post parameters: - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature requestBody: content: application/json: schema: $ref: '#/components/schemas/SCIMUser' required: true responses: '201': content: application/json: schema: $ref: '#/components/schemas/SCIMUser' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Create User tags: - scim /scim/v2/Users/{user_id}: delete: description: Delete a user according to SCIM v2 protocol operationId: delete_user_scim_v2_Users__user_id__delete parameters: - in: path name: user_id required: true schema: title: User ID type: string - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '204': description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Delete User tags: - scim get: description: Get a single user by ID according to SCIM v2 protocol operationId: get_user_scim_v2_Users__user_id__get parameters: - in: path name: user_id required: true schema: title: User ID type: string - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature responses: '200': content: application/json: schema: $ref: '#/components/schemas/SCIMUser' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Get User tags: - scim patch: description: Patch a user according to SCIM v2 protocol operationId: patch_user_scim_v2_Users__user_id__patch parameters: - in: path name: user_id required: true schema: title: User ID type: string - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature requestBody: content: application/json: schema: $ref: '#/components/schemas/SCIMPatchOp' required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/SCIMUser' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Patch User tags: - scim put: description: Update a user according to SCIM v2 protocol (full replacement) operationId: update_user_scim_v2_Users__user_id__put parameters: - in: path name: user_id required: true schema: title: User ID type: string - in: query name: feature required: false schema: anyOf: - type: string - type: 'null' title: Feature requestBody: content: application/json: schema: $ref: '#/components/schemas/SCIMUser' required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/SCIMUser' description: Successful Response '422': content: application/json: schema: $ref: '#/components/schemas/HTTPValidationError' description: Validation Error security: - APIKeyHeader: [] summary: Update User tags: - scim components: schemas: SCIMUserEmail: properties: primary: anyOf: - type: boolean - type: 'null' title: Primary type: anyOf: - type: string - type: 'null' title: Type value: format: email title: Value type: string required: - value title: SCIMUserEmail type: object SCIMServiceProviderConfig: properties: authenticationSchemes: anyOf: - items: additionalProperties: true type: object type: array - type: 'null' title: Authenticationschemes bulk: $ref: '#/components/schemas/SCIMFeature' default: supported: false changePassword: $ref: '#/components/schemas/SCIMFeature' default: supported: false etag: $ref: '#/components/schemas/SCIMFeature' default: supported: false filter: $ref: '#/components/schemas/SCIMFeature' default: supported: false meta: anyOf: - additionalProperties: true type: object - type: 'null' title: Meta patch: $ref: '#/components/schemas/SCIMFeature' default: supported: true schemas: default: - urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig items: type: string title: Schemas type: array sort: $ref: '#/components/schemas/SCIMFeature' default: supported: false title: SCIMServiceProviderConfig type: object SCIMFeature: properties: maxOperations: anyOf: - type: integer - type: 'null' title: Maxoperations maxPayloadSize: anyOf: - type: integer - type: 'null' title: Maxpayloadsize maxResults: anyOf: - type: integer - type: 'null' title: Maxresults supported: title: Supported type: boolean required: - supported title: SCIMFeature type: object SCIMGroup: properties: displayName: title: Displayname type: string externalId: anyOf: - type: string - type: 'null' title: Externalid id: anyOf: - type: string - type: 'null' title: Id members: anyOf: - items: $ref: '#/components/schemas/SCIMMember' type: array - type: 'null' title: Members meta: anyOf: - additionalProperties: true type: object - type: 'null' title: Meta schemas: items: type: string title: Schemas type: array required: - schemas - displayName title: SCIMGroup type: object SCIMUserName: properties: familyName: anyOf: - type: string - type: 'null' title: Familyname formatted: anyOf: - type: string - type: 'null' title: Formatted givenName: anyOf: - type: string - type: 'null' title: Givenname honorificPrefix: anyOf: - type: string - type: 'null' title: Honorificprefix honorificSuffix: anyOf: - type: string - type: 'null' title: Honorificsuffix middleName: anyOf: - type: string - type: 'null' title: Middlename title: SCIMUserName type: object SCIMMember: properties: display: anyOf: - type: string - type: 'null' title: Display value: title: Value type: string required: - value title: SCIMMember type: object SCIMPatchOp: properties: Operations: items: $ref: '#/components/schemas/SCIMPatchOperation' title: Operations type: array schemas: default: - urn:ietf:params:scim:api:messages:2.0:PatchOp items: type: string title: Schemas type: array required: - Operations title: SCIMPatchOp type: object ValidationError: properties: loc: items: anyOf: - type: string - type: integer type: array title: Location msg: type: string title: Message type: type: string title: Error Type input: title: Input ctx: type: object title: Context type: object required: - loc - msg - type title: ValidationError SCIMUser: properties: active: default: true title: Active type: boolean displayName: anyOf: - type: string - type: 'null' title: Displayname emails: anyOf: - items: $ref: '#/components/schemas/SCIMUserEmail' type: array - type: 'null' title: Emails externalId: anyOf: - type: string - type: 'null' title: Externalid groups: anyOf: - items: $ref: '#/components/schemas/SCIMUserGroup' type: array - type: 'null' title: Groups id: anyOf: - type: string - type: 'null' title: Id meta: anyOf: - additionalProperties: true type: object - type: 'null' title: Meta name: anyOf: - $ref: '#/components/schemas/SCIMUserName' - type: 'null' schemas: items: type: string title: Schemas type: array userName: anyOf: - type: string - type: 'null' title: Username required: - schemas title: SCIMUser type: object SCIMPatchOperation: properties: op: title: Op type: string path: anyOf: - type: string - type: 'null' title: Path value: anyOf: - {} - type: 'null' title: Value required: - op title: SCIMPatchOperation type: object HTTPValidationError: properties: detail: items: $ref: '#/components/schemas/ValidationError' type: array title: Detail type: object title: HTTPValidationError SCIMUserGroup: properties: display: anyOf: - type: string - type: 'null' title: Display type: anyOf: - type: string - type: 'null' default: direct title: Type value: title: Value type: string required: - value title: SCIMUserGroup type: object SCIMListResponse: properties: Resources: anyOf: - items: $ref: '#/components/schemas/SCIMUser' type: array - items: $ref: '#/components/schemas/SCIMGroup' type: array title: Resources itemsPerPage: anyOf: - type: integer - type: 'null' default: 10 title: Itemsperpage schemas: default: - urn:ietf:params:scim:api:messages:2.0:ListResponse items: type: string title: Schemas type: array startIndex: anyOf: - type: integer - type: 'null' default: 1 title: Startindex totalResults: title: Totalresults type: integer required: - totalResults - Resources title: SCIMListResponse type: object securitySchemes: APIKeyHeader: type: apiKey description: Bearer token in: header name: x-litellm-api-key