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

# Get the SCIM service provider configuration

> What this SCIM implementation supports (RFC 7643 section 5), which is how an identity provider decides what it may call: PATCH and filtering are supported, bulk operations, sorting, ETags and password change are not. Unauthenticated, because a provider reads it while being configured, before a token exists.



## OpenAPI

````yaml GET /api/scim/v2/ServiceProviderConfig
openapi: 3.1.0
info:
  title: LangWatch API
  version: 1.0.0
  description: LangWatch openapi spec
servers:
  - url: https://app.langwatch.ai
security:
  - project_api_key: []
paths:
  /api/scim/v2/ServiceProviderConfig:
    get:
      tags:
        - SCIM
      summary: Get the SCIM service provider configuration
      description: >-
        What this SCIM implementation supports (RFC 7643 section 5), which is
        how an identity provider decides what it may call: PATCH and filtering
        are supported, bulk operations, sorting, ETags and password change are
        not. Unauthenticated, because a provider reads it while being
        configured, before a token exists.
      operationId: scimGetServiceProviderConfig
      parameters: []
      responses:
        '200':
          description: The supported capabilities.
          content:
            application/json:
              schema:
                type: object
                properties:
                  schemas:
                    type: array
                    items:
                      type: string
                    description: The SCIM schema URNs this resource conforms to.
                  documentationUri:
                    type: string
                  patch:
                    type: object
                    properties:
                      supported:
                        type: boolean
                  bulk:
                    type: object
                    properties:
                      supported:
                        type: boolean
                      maxOperations:
                        type: integer
                      maxPayloadSize:
                        type: integer
                  filter:
                    type: object
                    properties:
                      supported:
                        type: boolean
                      maxResults:
                        type: integer
                  changePassword:
                    type: object
                    properties:
                      supported:
                        type: boolean
                  sort:
                    type: object
                    properties:
                      supported:
                        type: boolean
                  etag:
                    type: object
                    properties:
                      supported:
                        type: boolean
                  authenticationSchemes:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                        name:
                          type: string
                        description:
                          type: string
      security: []
components:
  securitySchemes:
    project_api_key:
      type: apiKey
      in: header
      name: X-Auth-Token
      description: >-
        Project API key for sending traces and accessing project-scoped
        resources. Format: sk-lw-... (no underscore). Obtain one by creating a
        project via the Admin API or the LangWatch UI.

````