ToolsSequences
Mark company
Set do_not_contact and/or qualification_status on a company.
Tool: mark_company
do_not_contact=true cascades to the company's people and stops their active enrollments; false lifts only the company flag.
Parameters
| Param | Type | Required | Description |
|---|---|---|---|
company_id | string (slug or UUID) | no | The company. One of company_id / domain is required. |
domain | string | no | OR the company domain - must match exactly one company, else ambiguous_match. |
do_not_contact | boolean | no | true cascades to the company's people and stops their active enrollments; false lifts only the company flag (people keep their individual flags). |
qualification_status | string | no | new | qualified | disqualified | customer. |
Pass at least one of
do_not_contact/qualification_status; omitted fields are untouched.
Sample request — customer
{
"domain": "globex.example",
"qualification_status": "customer"
}Sample request — lift do not contact
{
"domain": "initech.example",
"do_not_contact": false
}