Update

Update a Sequence Bot's details

Update

PUT 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

Headers

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

Body(raw)

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

Last updated