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

# Reset Conversation Context

> Reseta todo o contexto de uma conversa (categoria, histórico de mensagens, handoff).



## OpenAPI

````yaml openapi-v2 POST /router/handoff/reset/{instance}
openapi: 3.0.3
info:
  title: ZapThinker API
  version: 2.1.1
servers:
  - url: https://api.zapthinker.com
security: []
paths:
  /router/handoff/reset/{instance}:
    post:
      tags:
        - Router Controller
      summary: Reset all context for a conversation
      description: >-
        Reseta todo o contexto de uma conversa (categoria, histórico de
        mensagens, handoff).
      operationId: resetHandoff
      parameters:
        - name: instance
          in: path
          required: true
          description: Nome da instância
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                remoteJid:
                  type: string
              required:
                - remoteJid
      responses:
        '200':
          description: Contexto resetado
          content:
            application/json:
              schema:
                type: object
                properties:
                  remoteJid:
                    type: string
                  status:
                    type: string
                    enum:
                      - reset
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: apikey
      description: Your authorization key header

````