Clay
updateGroup
Update a group or list. Use this to update the group title and/or modify its members. When adding or removing contacts, provide ALL contact IDs to add/remove in a single call - do not make multiple calls for individual contacts.
Remote clay-inc/clay-mcp
Other tools also called updateGroup?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "The new name of the group if the user wants to rename it."
},
"group_id": {
"type": "number",
"description": "The ID of the group or list to update."
},
"add_contact_ids": {
"type": "array",
"items": {
"type": "number"
},
"default": [],
"example": [
123,
456
],
"description": "A list of contact IDs that should be added to this group. Each ID should be a number representing an existing contact in your network. You can provide multiple IDs to add several contacts at once."
},
"remove_contact_ids": {
"type": "array",
"items": {
"type": "number"
},
"default": [],
"example": [
123,
456
],
"description": "A list of contact IDs that should be removed from this group. Each ID should be a number representing an existing contact in your network. You can provide multiple IDs to remove several contacts at once."
}
}
}