Add

Add a new Sequence branch

Add

POST https://{{account_id}}.acquire.io/api/v1/bot/seq/branch

Add a new Sequence branch. The Sequence ID must be passed into the body.

Headers

NameTypeDescription

Authorization*

string

Bearer {{api_key}}

Request Body

NameTypeDescription

y*

string

The location that the branch will be placed on the y-axis

x*

string

The location that the branch will be placed on the x-axis

position*

object

position object

title*

string

The title of the branch

id*

integer

The Sequence ID that the branch will be part of

{
  "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"
    }
  }
}

Body(raw)

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

Last updated