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

# Get CSAT settings by team ID



## OpenAPI

````yaml get /v1/csat/team/{teamUid}
openapi: 3.0.0
info:
  title: Thena Platform
  description: The Thena Platform API description
  version: 1.0.0
  contact: {}
servers:
  - url: https://platform.thena.ai
    description: Platform
  - url: http://localhost:8000
    description: Local
security:
  - ApiKey: []
tags: []
paths:
  /v1/csat/team/{teamUid}:
    get:
      tags:
        - CSAT
      summary: Get CSAT settings by team ID
      parameters:
        - name: teamUid
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: Success - CSAT settings fetched successfully
          content:
            application/json:
              example:
                data:
                  ok: true
                  data:
                    id: 123e4567-e89b-12d3-a456-426614174000
                    team:
                      id: '12345678910'
                    organization:
                      id: '98765432110'
                    isEnabled: true
                    cooldownPeriodDays: 14
                    userCooldownPeriodDays: 30
                    emailConfigId: email-config-123
                    closedStatusIds:
                      - '1'
                      - '2'
                      - '3'
                    rules:
                      - id: rule-123
                        name: High Priority Ticket Survey
                        description: >-
                          Sends CSAT surveys to customers with high priority
                          tickets
                        isActive: true
                        priority: 1
                        createdAt: '2023-08-01T12:00:00Z'
                        updatedAt: '2023-08-02T14:30:00Z'
                    createdAt: '2023-01-01T00:00:00.000Z'
                    updatedAt: '2023-01-01T00:00:00.000Z'
                status: true
                message: CSAT settings fetched successfully
                timestamp: '2025-07-15T11:38:09.817Z'
        '401':
          description: Unauthorized
          content:
            application/json:
              example:
                statusCode: 401
                message: Unauthorized
                error: Unauthorized
        '403':
          description: Forbidden
          content:
            application/json:
              example:
                statusCode: 403
                message: Forbidden
                error: Forbidden
        '404':
          description: CSAT settings not found
          content:
            application/json:
              example:
                statusCode: 404
                message: CSAT settings for team with ID team123 not found
                error: Not Found
        '429':
          description: Too many requests!
        '500':
          description: Internal Server Error
          content:
            application/json:
              example:
                statusCode: 500
                message: Internal Server Error
                error: Internal Server Error
        '503':
          description: Service Unavailable
          content:
            application/json:
              example:
                statusCode: 503
                message: Service Unavailable
                error: Service Unavailable
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: 'Enter your API key '

````