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

# Interrupt an Assistant session



## OpenAPI

````yaml post /v5/agent/{sessionId}/interrupt
openapi: 3.0.3
info:
  title: Kadoa API
  version: 3.0.0
  contact:
    name: Support
    email: support@kadoa.com
servers:
  - url: https://api.kadoa.com
security: []
paths:
  /v5/agent/{sessionId}/interrupt:
    post:
      tags:
        - Agent
      summary: Safely interrupt an active Assistant session
      operationId: v5AgentInterrupt
      parameters:
        - name: sessionId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: Interrupt accepted or the session was already paused
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssistantControlResponse'
        '404':
          description: Session not found for the authenticated team
        '409':
          description: Session cannot be interrupted from its current state
components:
  schemas:
    AssistantControlResponse:
      type: object
      required:
        - data
        - status
      properties:
        data:
          type: object
          required:
            - success
          properties:
            success:
              type: boolean
            delivery:
              type: string
              enum:
                - durable
                - already_paused
        status:
          type: string
          enum:
            - success

````