Skip to main content
PATCH
/
conversation-ai
/
agents
/
{agentId}
/
followup-settings
Update Followup Settings
curl --request PATCH \
  --url https://services.leadconnectorhq.com/conversation-ai/agents/{agentId}/followup-settings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Version: <version>' \
  --data '
{
  "actionIds": [
    "edxcfghbnjkimd"
  ],
  "followupSettings": {
    "dynamicChannelSwitching": true,
    "followUpHours": true,
    "workingHours": [
      {
        "dayOfTheWeek": 1,
        "intervals": [
          {
            "startHour": 9,
            "startMinute": 0,
            "endHour": 17,
            "endMinute": 30
          }
        ]
      }
    ],
    "timezoneToUse": "contact"
  }
}
'
{
  "data": {
    "id": "actionId123",
    "name": "Trigger Workflow",
    "type": "triggerWorkflow",
    "details": {
      "workflowIds": [
        "workflow123",
        "workflow456"
      ],
      "triggerCondition": "When user requests appointment",
      "triggerMessage": "Workflow triggered successfully"
    },
    "agentId": "agentId123"
  },
  "success": true
}

Authorizations

Authorization
string
header
required

Access Token or Private Integration Token

Headers

Version
enum<string>
required

API Version

Available options:
2021-04-15

Path Parameters

agentId
string
required

Body

application/json
actionIds
string[]
required
Example:
["edxcfghbnjkimd"]
followupSettings
object
required

Response

Success

data
object
required

Updated action details

success
boolean
required

Success status of the request

Example:

true

Last modified on March 7, 2026