> ## 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.

# List the SCIM resource types

> The resources this service provisions, User and Group, each naming the endpoint and the schema URN that serves it (RFC 7643 section 6). Unauthenticated, like the rest of SCIM discovery.



## OpenAPI

````yaml GET /api/scim/v2/ResourceTypes
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/ResourceTypes:
    get:
      tags:
        - SCIM
      summary: List the SCIM resource types
      description: >-
        The resources this service provisions, User and Group, each naming the
        endpoint and the schema URN that serves it (RFC 7643 section 6).
        Unauthenticated, like the rest of SCIM discovery.
      operationId: scimListResourceTypes
      parameters: []
      responses:
        '200':
          description: The User and Group resource types.
          content:
            application/json:
              schema:
                type: object
                properties:
                  schemas:
                    type: array
                    items:
                      type: string
                    description: The SCIM schema URNs this resource conforms to.
                  totalResults:
                    type: integer
                    description: How many resources match, before pagination.
                  startIndex:
                    type: integer
                  itemsPerPage:
                    type: integer
                  Resources:
                    type: array
                    items:
                      type: object
                      properties:
                        schemas:
                          type: array
                          items:
                            type: string
                          description: The SCIM schema URNs this resource conforms to.
                        id:
                          type: string
                        name:
                          type: string
                        endpoint:
                          type: string
                        schema:
                          type: string
                          description: >-
                            The URN of the schema this resource type is defined
                            by.
                        meta:
                          type: object
                          properties:
                            resourceType:
                              type: string
                            location:
                              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.

````