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

# Listar Configs de Follow-up

> Retorna todas as regras de follow-up configuradas para a loja.



## OpenAPI

````yaml GET /followups/configs
openapi: 3.1.0
info:
  title: Cordialy API
  description: >-
    API pública para integração com a plataforma Cordialy de atendimento via
    WhatsApp com IA.
  version: 1.0.0
  contact:
    email: suporte@cordialy.ai
servers:
  - url: https://api.cordialy.ai/integrations/v1
    description: Produção
security:
  - ApiKeyAuth: []
paths:
  /followups/configs:
    get:
      tags:
        - Follow-up
      summary: Listar configurações
      description: Retorna todas as regras de follow-up configuradas para a loja.
      operationId: listFollowupConfigs
      responses:
        '200':
          description: Lista de configurações
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FollowupConfig'
components:
  schemas:
    FollowupConfig:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type: string
          description: Nome da configuração
        is_active:
          type: boolean
        trigger_type:
          type: string
          enum:
            - silence
            - post_handover
            - post_contact
          description: >-
            `silence` = inatividade do lead, `post_handover` = após
            transferência, `post_contact` = após primeiro contato
        trigger_delay_minutes:
          type: integer
          description: Minutos após o trigger para disparar
        followup_type:
          type: string
          enum:
            - fixed_message
            - ai_objective
          description: >-
            `fixed_message` = mensagem fixa, `ai_objective` = IA gera com base
            no objetivo
        message:
          type: string
          nullable: true
          description: Mensagem enviada quando `followup_type = fixed_message`
        objective:
          type: string
          nullable: true
          description: Objetivo passado à IA quando `followup_type = ai_objective`
        max_attempts:
          type: integer
          description: Número máximo de tentativas
        min_interval_minutes:
          type: integer
          description: Intervalo mínimo entre tentativas
        created_at:
          type: string
          format: date-time
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Chave de API gerada na plataforma em Integrações → API Keys

````