ToolsSequences
Mark person
Set do_not_contact and/or qualification_status on a person.
Tool: mark_person
do_not_contact=true also stops their active enrollments and cancels planned sends; false lifts the block without resuming anything.
Parameters
| Param | Type | Required | Description |
|---|---|---|---|
person_id | string (slug or UUID) | yes | The person - find the id via search_person_in_sequences or lead-group rows. |
do_not_contact | boolean | no | true also stops active enrollments and cancels planned sends; false lifts the block without resuming anything. |
qualification_status | string | no | new | qualified | disqualified | customer. |
Pass at least one of
do_not_contact/qualification_status; omitted fields are untouched.
Sample request — qualify
{
"person_id": "marco-rossi-0004",
"qualification_status": "qualified"
}Sample request — do not contact
{
"person_id": "priya-sharma-0003",
"do_not_contact": true
}Sample request — lift do not contact
{
"person_id": "priya-sharma-0003",
"do_not_contact": false
}