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

# Start Conversation

> Start a new conversation with the Clever AI agent.

Start a new conversation with the Clever AI agent. You can specify the language for the conversation (English or Italian).

### Query Parameters

<ParamField query="language" type="string" default="en">
  Language for the conversation. Can be:

  * `en` or `english` for English
  * `it` or `italian` for Italian
    (case insensitive)
</ParamField>

### Response

<ResponseField name="conversation_id" type="string">
  Unique identifier for the conversation
</ResponseField>

<ResponseField name="response" type="string">
  Initial response from the agent
</ResponseField>

<ResponseField name="status" type="string">
  Current status of the conversation. One of:

  * `started`
  * `in_progress`
  * `awaiting_troubleshooting_confirmation`
  * `troubleshooting_in_progress`
  * `awaiting_approval`
  * `completed`
  * `error`
</ResponseField>

<ResponseField name="customer_info" type="object">
  Customer information object containing:

  <Expandable title="properties">
    <ResponseField name="name" type="string">Customer's name</ResponseField>
    <ResponseField name="phone" type="string">Contact phone number</ResponseField>
    <ResponseField name="address" type="string">Service address</ResponseField>
    <ResponseField name="issue" type="string">Description of the issue</ResponseField>
    <ResponseField name="role" type="string">Customer's role (optional)</ResponseField>
    <ResponseField name="priority" type="string">Ticket priority (optional)</ResponseField>
    <ResponseField name="type" type="string">Request type (optional)</ResponseField>
    <ResponseField name="date_time" type="string">Timestamp of conversation</ResponseField>
    <ResponseField name="submission_date_time" type="string">When ticket was submitted (optional)</ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="is_complete" type="boolean">
  Whether all required information has been collected
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X POST 'https://api.clever.nivara.io/conversation/start?language=en'
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "conversation_id": "conv_123abc456def",
    "response": "Hello! I'm here to help you with any maintenance requests. Could you please tell me your name?",
    "status": "started",
    "customer_info": {
      "name": null,
      "phone": null,
      "address": null,
      "issue": null,
      "role": null,
      "priority": null,
      "type": null,
      "date_time": "2024-03-21T10:30:00Z",
      "submission_date_time": null
    },
    "is_complete": false
  }
  ```
</ResponseExample>
