Add

API to add a new bot group

Add Group

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

Add a new bot group

Headers

NameTypeDescription

Authorization

string

Bearer {{api_key}}

Request Body

NameTypeDescription

askFeedback

string

Have the bot ask for feedback ("active" | "disabled")

isDefault

string

Make this group the default ("yes" | "no")

description

string

Description of your bot group

title

string

Title for your bot group

{
  "data": {
    "success": true,
    "message": "Group Added successfully.",
    "addedGroup": 2
  }
}

Body(raw)

{
  "title": "Group Title Demo",
  "description": "Group Title Demo",
  "isDefault": "no",
  "askFeedback": "active"
}

Last updated