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

# Continue Chat

> Endpoint to continue an ongoing chat

### Parameters

<ParamField path="sessionId" type="string">
  publicId: The session ID of the bot to continue a chat for.
</ParamField>

## Body Description

<ParamField body="message" type="any" required="true">
  The message sent.
</ParamField>

## Response Description

Below you will see the description of the function continue chat.

<ResponseField name="messages" type="object[]" required>
  The messages content and information in the bot session.

  <Expandable title="messages properties">
    <ResponseField name="id" type="string" required>
      Unique identifier for the messages of the session.
    </ResponseField>

    <ResponseField name="type" type="string">
      The format of the message sent.
    </ResponseField>

    <ResponseField name="content" type="any">
      The content of the message sent.
    </ResponseField>
  </Expandable>
</ResponseField>
