removeContactFromList
Easily remove a specific email address from a designated contact list in Mailmodo by providing the email and list name.
Instructions
Remove a particular contact from the contact list
Input Schema
Name | Required | Description | Default |
---|---|---|---|
Yes | |||
listName | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"email": {
"type": "string"
},
"listName": {
"type": "string"
}
},
"required": [
"email",
"listName"
],
"type": "object"
}