update_email_list
Modify an existing email list by changing its name or other properties to keep your contact management organized and current.
Instructions
Update the properties of an existing email list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
list_id | Yes | ID of the email list to update | |
name | Yes | New name for the email list |
Input Schema (JSON Schema)
{
"properties": {
"list_id": {
"description": "ID of the email list to update",
"type": "string"
},
"name": {
"description": "New name for the email list",
"type": "string"
}
},
"required": [
"list_id",
"name"
],
"type": "object"
}