# Add

## Add

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

Add a new sequence. The following are required in the body: \
\
`"greeting"` - set to `"active"` to include the greeting or set to `"disabled"` to skip the greeting.  \
\
`"status"` - `"publish"` on your site or keep as a `"draft"` to work on later. \
\
`"title"` - the name of the sequence

#### Headers

| Name          | Type   | Description         |
| ------------- | ------ | ------------------- |
| Authorization | string | Bearer {{api\_key}} |

#### Request Body

| Name                                       | Type   | Description                                                       |
| ------------------------------------------ | ------ | ----------------------------------------------------------------- |
| greeting<mark style="color:red;">\*</mark> | string | Include a greeting. Choose from "active" or "disabled".           |
| status<mark style="color:red;">\*</mark>   | string | Set the status of the sequence. Choose from "draft" or "publish". |
| title<mark style="color:red;">\*</mark>    | string | Title of the sequence                                             |

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

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

```

{% endtab %}
{% endtabs %}

## Body(raw)

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

```
