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

# Get default tools and datasource for a specific chat

> Get the default tools and datasource configured for a specific chat with redacted sensitive information



## OpenAPI

````yaml /swagger/5.12/ai-studio-swagger.yml get /common/chats/{id}/defaults
openapi: 3.0.1
info:
  title: Midsommar API
  description: This is the API for the Midsommar user and group management system.
  termsOfService: http://swagger.io/terms/
  contact:
    name: API Support
    url: http://www.swagger.io/support
    email: support@swagger.io
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  version: '1.0'
servers:
  - url: //localhost:8080/api/v1
security: []
paths:
  /common/chats/{id}/defaults:
    get:
      tags:
        - common
      summary: Get default tools and datasource for a specific chat
      description: >-
        Get the default tools and datasource configured for a specific chat with
        redacted sensitive information
      parameters:
        - name: id
          in: path
          description: Chat ID
          required: true
          schema:
            type: integer
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ChatDefaultsResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/api.ErrorResponse'
components:
  schemas:
    api.ChatDefaultsResponse:
      type: object
      properties:
        attributes:
          type: object
          properties:
            default_data_source:
              $ref: '#/components/schemas/api.SimplifiedDataSourceResponse'
            default_tools:
              type: array
              items:
                $ref: '#/components/schemas/api.SimplifiedToolResponse'
            name:
              type: string
            rag_results_per_source:
              type: integer
            supports_tools:
              type: boolean
        id:
          type: string
        type:
          type: string
    api.ErrorResponse:
      type: object
      properties:
        errors:
          type: array
          items:
            type: object
            properties:
              detail:
                type: string
              title:
                type: string
      description: Error response model
    api.SimplifiedDataSourceResponse:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string
    api.SimplifiedToolResponse:
      type: object
      properties:
        id:
          type: integer
        name:
          type: string

````