> For the complete documentation index, see [llms.txt](https://developer.acquire.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.acquire.io/master/js-api/js-live-chat-api/thread.md).

# Thread

### Start New Thread

To start a new conversation thread.

{% tabs %}
{% tab title="Attributes" %}

| Attribute    | Type     | Description                    |
| ------------ | -------- | ------------------------------ |
| **`status`** | `string` | New thread status string 'new' |
| {% endtab %} |          |                                |

{% tab title="Sample Code" %}

```javascript
<script> 
   window.acquire = window.acquire || [];
   window.acquire.push(function(app){
      app.threadManager().status('new');
   });
</script>
```

{% endtab %}
{% endtabs %}
