remove-record-from-list
Remove companies or people from CRM lists such as sales pipelines and lead lists by specifying the list and entry IDs.
Instructions
Remove a company or person from a CRM list (sales pipeline, lead list, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
entryId | Yes | ID of the list entry to remove | |
listId | Yes | ID of the list to remove the record from |
Input Schema (JSON Schema)
{
"properties": {
"entryId": {
"description": "ID of the list entry to remove",
"type": "string"
},
"listId": {
"description": "ID of the list to remove the record from",
"type": "string"
}
},
"required": [
"listId",
"entryId"
],
"type": "object"
}