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

# List Scribe Session Configurations

> List all scribe session configurations for the authenticated account.



## OpenAPI

````yaml /pt-BR/scribe-api/openapi.json get /v1/scribe-session-configurations
openapi: 3.1.0
info:
  title: Scribe Public API
  description: >-
    API REST externa para integração com a plataforma Telepatia. Autentique-se
    com chaves de API, defina o contexto da consulta e busque sessões de scribe.
  version: 0.1.0
servers:
  - url: https://scribe-api.telepatia.ai
    description: Production
security:
  - BearerAuth: []
paths:
  /v1/scribe-session-configurations:
    get:
      tags:
        - Scribe Session Configurations
      summary: List Scribe Session Configurations
      description: List all scribe session configurations for the authenticated account.
      operationId: >-
        api_scribe_session_configurations_listed_v1_scribe_session_configurations_get
      responses:
        '200':
          description: Resposta bem-sucedida
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScribeSessionConfigListResponse'
              example:
                items:
                  - id: ssc_a1b2c3d4e5f6g7h8
                    name: Cardiology Consultation
                  - id: ssc_i9j0k1l2m3n4o5p6
                    name: General Medicine
                limit: 20
                page: 1
                total: 2
                totalPages: 1
        '400':
          description: >-
            Requisição inválida — parâmetros inválidos, falhas de validação ou
            campos ausentes.
          content:
            application/json:
              examples:
                parameter_missing:
                  summary: Missing required field
                  value:
                    error:
                      type: invalid_request_error
                      code: parameter_missing
                      message: name is required.
                      param: name
                parameter_invalid:
                  summary: Invalid field value
                  value:
                    error:
                      type: invalid_request_error
                      code: parameter_invalid
                      message: >-
                        idCountry must be a valid country name, ISO alpha-2, or
                        ISO alpha-3 code.
                      param: idCountry
                account_invalid:
                  summary: Invalid account
                  value:
                    error:
                      type: invalid_request_error
                      code: account_invalid
                      message: Account has no valid authId.
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Não autorizado — chave de API ausente ou inválida.
          content:
            application/json:
              examples:
                authentication_required:
                  summary: Invalid or missing API key
                  value:
                    error:
                      type: authentication_error
                      code: authentication_required
                      message: Invalid API key.
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '503':
          description: Serviço indisponível — uma dependência externa está indisponível.
          content:
            application/json:
              examples:
                service_unavailable:
                  summary: External service unavailable
                  value:
                    error:
                      type: api_error
                      code: service_unavailable
                      message: >-
                        Unable to generate verification code. Please try again
                        later.
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    ScribeSessionConfigListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/ScribeSessionConfigItem'
          type: array
          title: Items
          description: List of scribe session configurations.
        total:
          type: integer
          title: Total
          description: Total number of configurations.
        page:
          type: integer
          title: Page
          description: Current page number.
        limit:
          type: integer
          title: Limit
          description: Number of items per page.
        totalPages:
          type: integer
          title: Totalpages
          description: Total number of pages.
      type: object
      required:
        - items
        - total
        - page
        - limit
        - totalPages
      title: ScribeSessionConfigListResponse
      description: Response body for listing scribe session configurations.
      examples:
        - items:
            - id: ssc_a1b2c3d4e5f6g7h8
              name: Cardiology Consultation
            - id: ssc_i9j0k1l2m3n4o5p6
              name: General Medicine
          limit: 20
          page: 1
          total: 2
          totalPages: 1
    ErrorResponse:
      description: Envelope padronizado de resposta de erro.
      properties:
        error:
          $ref: '#/components/schemas/ErrorDetail'
      required:
        - error
      title: ErrorResponse
      type: object
    ScribeSessionConfigItem:
      properties:
        id:
          anyOf:
            - type: string
            - type: 'null'
          title: Id
          description: Stable public identifier for the configuration.
          examples:
            - ssc_a1b2c3d4e5f6g7h8
        name:
          type: string
          title: Name
          description: Display name of the scribe session configuration.
          examples:
            - Cardiology Consultation
      type: object
      required:
        - name
      title: ScribeSessionConfigItem
      description: A single scribe session configuration.
    ErrorDetail:
      description: >-
        Detalhe do erro com códigos legíveis por máquina e mensagem legível por
        humanos.
      properties:
        type:
          description: Broad error category for high-level handling.
          examples:
            - invalid_request_error
          title: Type
          type: string
        code:
          description: Machine-readable error code. Clients should switch on this value.
          examples:
            - parameter_invalid
          title: Code
          type: string
        message:
          description: Human-readable error message ending with a period.
          examples:
            - >-
              idCountry must be a valid country name, ISO alpha-2, or ISO
              alpha-3 code.
          title: Message
          type: string
        param:
          anyOf:
            - type: string
            - type: 'null'
          default: null
          description: The request field that caused the error, if applicable.
          examples:
            - idCountry
          title: Param
        details:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          default: null
          description: Optional structured, machine-readable context for the error.
          examples:
            - pendingConsultations:
                - sessionId: abc123
                  url: https://...
          title: Details
      required:
        - type
        - code
        - message
      title: ErrorDetail
      type: object
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Chave de API enviada como token Bearer

````