delete_interest
Delete a specific interest option from a Mailchimp list category. Removes the interest and its subscriber associations while keeping the category and other options.
Instructions
Delete a single interest option from a category, keeping the category and other options intact.
Use to remove one specific option. The interest and its subscriber associations are removed. Use delete_interest_category instead to remove the entire category with all options at once.
Args: list_id: The Mailchimp audience/list ID (e.g. 'abc123def4'). Obtain from list_audiences. category_id: The interest category ID. Obtain from list_interest_categories. interest_id: The interest option ID to delete. Obtain from list_interests.
Returns: JSON with fields: status ("deleted"), interest_id. Returns error if interest does not exist.
Example: delete_interest(list_id="abc123", category_id="cat456", interest_id="int789") -> {"status": "deleted", "interest_id": "int789"}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account | No | ||
| list_id | Yes | ||
| category_id | Yes | ||
| interest_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |