Update

Update a sequence branch.

Update

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

Update a sequence branch. The branch ID must be passed into the endpoint as a path parameter and into the body as "id".

Path Parameters

NameTypeDescription

id*

integer

The ID of the branch you'd like to update

Headers

NameTypeDescription

Authorization*

string

Bearer {{api_key}}

Request Body

NameTypeDescription

title*

string

The title of the branch

data*

object

Data object

id*

integer

The ID of the branch you'd like to update

{
  "data": {
    "success": true,
    "message": "Branch updated successfully"
  }
}

Body(raw)

{
  "id": 926,
  "leadId": 138,
  "data": {
    "title": "Welcome Branch"
  }
}

Last updated