> 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/branch/add.md).

# Add

## Add

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

Add a new Sequence branch. The Sequence ID must be passed into the body.&#x20;

#### Headers

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

#### Request Body

| Name                                       | Type    | Description                                               |
| ------------------------------------------ | ------- | --------------------------------------------------------- |
| y<mark style="color:red;">\*</mark>        | string  | The location that the branch will be placed on the y-axis |
| x<mark style="color:red;">\*</mark>        | string  | The location that the branch will be placed on the x-axis |
| position<mark style="color:red;">\*</mark> | object  | position object                                           |
| title<mark style="color:red;">\*</mark>    | string  | The title of the branch                                   |
| id<mark style="color:red;">\*</mark>       | integer | The Sequence ID that the branch will be part of           |

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

```
{
  "data": {
    "message": {
      "lead": {
        "id": 138,
        "title": "Sales Sequence 06",
        "description": "A sequence designed to generate leads.",
        "status": "publish",
        "greeting": "active",
        "askFeedback": "disabled",
        "identifier": "salesSequence",
        "identifierCount": 7,
        "isImported": "no",
        "isCloned": "no",
        "clonedCount": 0,
        "createdBy": 1,
        "updatedBy": 1,
        "dateCreated": "2021-02-24T12:10:32.000Z",
        "dateUpdated": "2021-03-01T08:55:10.000Z"
      },
      "title": "New Branch",
      "visibleOrder": 8,
      "position": {
        "x": "22",
        "y": "30"
      },
      "id": 928,
      "isParent": "no"
    }
  }
}

```

{% endtab %}
{% endtabs %}

## Body(raw)

```
{
  "id": 138,
  "title": "New Branch",
  "position": {
    "x": "22",
    "y": "30"
  }
}

```
