> 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/rest-apis/chatbot/sequence-bot/update.md).

# Update

## Update

<mark style="color:orange;">`PUT`</mark> `https://{{account_id}}.acquire.io/api/v1/bot/seq/{{id}}`

Update a sequence bot's description. The id must be passed into the endpont as a path parameter.

#### Path Parameters

| Name                                 | Type    | Description                                  |
| ------------------------------------ | ------- | -------------------------------------------- |
| id<mark style="color:red;">\*</mark> | integer | Specify the ID of the sequence to be updated |

#### Headers

| Name                                            | Type   | Description         |
| ----------------------------------------------- | ------ | ------------------- |
| Authorization<mark style="color:red;">\*</mark> | string | Bearer {{api\_key}} |

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

```
{
  "data": {
    "id": 139,
    "title": "Blank Lead",
    "description": "Description Changed",
    "status": "draft",
    "greeting": "active",
    "askFeedback": "disabled",
    "identifier": "blankSequence",
    "identifierCount": 1,
    "isImported": "no",
    "isCloned": "no",
    "clonedCount": 0,
    "createdBy": 1,
    "updatedBy": 1,
    "dateCreated": "2021-03-19T04:01:38.000Z",
    "dateUpdated": "2021-03-19T04:03:47.648Z"
  }
}

```

{% endtab %}
{% endtabs %}

## Body(raw)

```
{
  "title": "Blank Lead",
  "description": "Description Changed",
  "status": "draft",
  "greeting": "active",
  "askFeedback": "disabled"
}

```
