Add
Add a new sequence
Add
POST
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*
string
Include a greeting. Choose from "active" or "disabled".
status*
string
Set the status of the sequence. Choose from "draft" or "publish".
title*
string
Title of the sequence
{
"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
}
}
}
Body(raw)
{
"title": "Blank Lead",
"description": "Description",
"status": "draft",
"greeting": "active",
"identifier": "blankSequence",
"askFeedback": "disabled",
"additionalProp1": {}
}
Last updated