TritonAI Developer API — SCIM 2.0 provisioning

SCIM 2.0 (RFC 7643 / RFC 7644) user and group provisioning surface exposed by the TritonAI gateway on UC San Diego infrastructure — 18 operations across /scim/v2/Users, /scim/v2/Groups, /scim/v2/Schemas, /scim/v2/ResourceTypes and /scim/v2/ServiceProviderConfig. The deployment is the institution's; the endpoint shapes are supplied by the LiteLLM proxy software it runs. Credential-gated and not documented on the campus-facing TritonAI developer pages. This is the education regime's `scim` domain standard, present in the contract rather than in a prose claim.

OpenAPI Specification

ucsd-scim-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: TritonAI Developer API (LiteLLM Gateway) SCIM 2.0 API
  description: SCIM 2.0 (RFC 7643 / RFC 7644) user and group provisioning surface exposed by the TritonAI
    LLM gateway that UC San Diego operates at https://tritonai-api.ucsd.edu. The gateway runs on UC San
    Diego infrastructure (its-dsmlp-p3inf-ingress-01.ucsd.edu, 128.54.86.100 — the campus Data Science/ML
    Platform ingress), so the deployment is the institution's; the endpoint shapes are supplied by the
    LiteLLM proxy software the institution runs. This document was derived on 2026-08-19 from the live
    OpenAPI 3.1 description the gateway publishes at https://tritonai-api.ucsd.edu/openapi.json, filtered
    to the operations LiteLLM tags `scim`. UC San Diego does not document this surface on https://tritonai.ucsd.edu/developer-apis/
    — it is an administrative provisioning surface, not part of the campus-facing inference contract,
    and it is credential-gated.
  version: 1.97.0
  contact:
    name: TritonAI
    email: tritonai@ucsd.edu
    url: https://tritonai.ucsd.edu/developer-apis/index.html
servers:
- url: https://tritonai-api.ucsd.edu
  description: TritonAI LLM gateway
security:
- bearerAuth: []
tags:
- name: scim
  description: SCIM 2.0 user, group, schema and service-provider-config endpoints.
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:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    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
    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
    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
    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
    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
    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
    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
    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
    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
    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
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: Issued TritonAI API key passed as a Bearer token.