Follow-up Rules API
Creating a Follow-up Rule
curl -X POST https://api.yourdomain.com/v1/followup/rules \
-H "Authorization: Bearer <Access-Token>" \
-H "Content-Type: application/json" \
-d '{
"name": "Follow-up for Leads",
"expectThreadResponse": true,
"templateBody": "Thank you for reaching out. We will follow up shortly.",
"templateSubject": "Follow-up Confirmation",
"actions": [
{
"intervalDays": 3,
"message": "Reminder to respond to client."
}
]
}'Updating a Follow-up Rule
Getting Follow-up Rules
Deleting a Follow-up Rule
Getting Follow-up Configuration
Updating Follow-up Configuration
Last updated
Was this helpful?