> ## Documentation Index
> Fetch the complete documentation index at: https://docs.lighton.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve Service Provider Configuration



## OpenAPI

````yaml /api-reference/openapi-v2.yaml get /scim/v2/ServiceProviderConfig
openapi: 3.0.3
info:
  title: Paradigm API
  version: xenial-xerus (v2)
  description: >-
    A versatile and adaptable tool designed to integrate Generative AI into your
    applications
servers:
  - url: https://paradigm.lighton.ai
security: []
tags:
  - name: Models
    description: Operations about AI models
  - name: Files Search
    description: Operations about files search
  - name: Files
    description: Operations about files
  - name: Upload Sessions
    description: Operations about upload sessions
  - name: Workspaces
    description: Operations about workspaces
  - name: Users
    description: Operations about users
  - name: Companies
    description: Operations about companies
  - name: SCIM
    description: Operations about SCIM
  - name: Feedbacks
    description: Operations about feedbacks
  - name: Reporting
    description: Operations about reporting
  - name: Monitoring
    description: Operations about monitoring
  - name: Platform Status
    description: Operations about platform status
paths:
  /scim/v2/ServiceProviderConfig:
    get:
      tags:
        - SCIM
      summary: Retrieve Service Provider Configuration
      operationId: scim_v2_ServiceProviderConfig_retrieve
      responses:
        '200':
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/SCIMServiceProviderConfigResponse'
          description: Service provider configuration response
        '401':
          content:
            application/scim+json:
              schema:
                $ref: '#/components/schemas/SCIMErrorResponse'
              examples:
                Unauthorized:
                  value:
                    schemas:
                      - urn:ietf:params:scim:api:messages:2.0:Error
                    detail: Unauthorized
                    status: 401
          description: Authentication required
      security:
        - bearerAuth: []
components:
  schemas:
    SCIMServiceProviderConfigResponse:
      type: object
      properties:
        schemas:
          type: array
          items:
            type: string
          default:
            - urn:ietf:params:scim:schemas:core:2.0:ServiceProviderConfig
        documentationUri:
          type: string
        patch:
          $ref: '#/components/schemas/SCIMServiceProviderSupported'
        bulk:
          $ref: '#/components/schemas/SCIMServiceProviderBulk'
        filter:
          $ref: '#/components/schemas/SCIMServiceProviderFilter'
        changePassword:
          $ref: '#/components/schemas/SCIMServiceProviderSupported'
        sort:
          $ref: '#/components/schemas/SCIMServiceProviderSupported'
        etag:
          $ref: '#/components/schemas/SCIMServiceProviderSupported'
        authenticationSchemes:
          $ref: '#/components/schemas/SCIMAuthenticationScheme'
        meta:
          $ref: '#/components/schemas/SCIMServiceProviderMeta'
      required:
        - authenticationSchemes
        - bulk
        - changePassword
        - documentationUri
        - etag
        - filter
        - meta
        - patch
        - sort
    SCIMErrorResponse:
      type: object
      properties:
        schemas:
          type: array
          items:
            type: string
          default:
            - urn:ietf:params:scim:api:messages:2.0:Error
        detail:
          type: string
        status:
          type: integer
      required:
        - detail
        - status
    SCIMServiceProviderSupported:
      type: object
      properties:
        supported:
          type: boolean
          default: false
    SCIMServiceProviderBulk:
      type: object
      properties:
        supported:
          type: boolean
          default: false
        maxOperations:
          type: integer
        maxPayloadSize:
          type: integer
      required:
        - maxOperations
        - maxPayloadSize
    SCIMServiceProviderFilter:
      type: object
      properties:
        supported:
          type: boolean
          default: false
        maxResults:
          type: integer
      required:
        - maxResults
    SCIMAuthenticationScheme:
      type: object
      properties:
        type:
          type: string
          description: Authentication scheme type (e.g., 'oauth2', 'httpbasic')
        name:
          type: string
          description: The common authentication scheme name
        description:
          type: string
          description: A description of the authentication scheme
        specUri:
          type: string
          format: uri
          description: HTTP addressable URL pointing to the specification
        documentationUri:
          type: string
          format: uri
          description: HTTP addressable URL pointing to the documentation
        primary:
          type: boolean
          default: false
          description: Whether this is a primary authentication scheme
      required:
        - description
        - name
        - type
    SCIMServiceProviderMeta:
      type: object
      properties:
        location:
          type: string
        resourceType:
          type: string
          default: ServiceProviderConfig
      required:
        - location
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Bearer authentication header of the form `Bearer <token>`, where
        `<token>` is your auth token.

````