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

# Resume an Assistant session

> Resumes with the persona persisted on the session, preserving Lighthouse versus Julie behavior.



## OpenAPI

````yaml post /v5/agent/{sessionId}/resume
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}/resume:
    post:
      tags:
        - Agent
      summary: Resume an inactive or interrupted Assistant session
      description: >-
        Resumes with the persona persisted on the session, preserving Lighthouse
        versus Julie behavior.
      operationId: v5AgentResume
      parameters:
        - name: sessionId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '202':
          description: Resume accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AssistantResumeResponse'
        '404':
          description: Session not found for the authenticated team
        '409':
          description: Session is already active or cannot be resumed
components:
  schemas:
    AssistantResumeResponse:
      type: object
      required:
        - data
        - status
        - message
      properties:
        data:
          type: object
          required:
            - jobId
            - sessionId
          properties:
            jobId:
              type: string
            sessionId:
              type: string
              format: uuid
        status:
          type: string
          enum:
            - success
        message:
          type: string

````