remove_contact_from_lists
Remove specific contacts from email marketing lists to manage subscriber groups and maintain list accuracy for targeted communications.
Instructions
Remove contacts from a specific email list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contact_ids | Yes | Array of contact IDs to remove from the list | |
list_id | Yes | ID of the list to remove contacts from |
Input Schema (JSON Schema)
{
"properties": {
"contact_ids": {
"description": "Array of contact IDs to remove from the list",
"items": {
"type": "string"
},
"type": "array"
},
"list_id": {
"description": "ID of the list to remove contacts from",
"type": "string"
}
},
"required": [
"list_id",
"contact_ids"
],
"type": "object"
}