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

# Cancelar Follow-up

> Cancela um follow-up com status `pending`. Retorna erro se já foi enviado, falhou ou cancelado.



## OpenAPI

````yaml DELETE /followups/scheduled/{followupId}
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/scheduled/{followupId}:
    delete:
      tags:
        - Follow-up
      summary: Cancelar follow-up
      description: >-
        Cancela um follow-up com status `pending`. Retorna erro se já foi
        enviado, falhou ou cancelado.
      operationId: cancelFollowup
      parameters:
        - name: followupId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Follow-up cancelado com sucesso
          content:
            application/json:
              schema:
                type: object
                properties:
                  cancelled:
                    type: boolean
                  id:
                    type: string
                    format: uuid
        '400':
          description: Follow-up não está pendente
        '404':
          description: Follow-up não encontrado
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: Chave de API gerada na plataforma em Integrações → API Keys

````