update-list-entry
Modify list entry attributes in Attio CRM, such as updating pipeline stages from 'Interested' to 'Demo Scheduling' or changing other entry properties.
Instructions
Update a list entry (e.g., change stage from 'Interested' to 'Demo Scheduling')
Input Schema
Name | Required | Description | Default |
---|---|---|---|
attributes | Yes | Attributes to update on the list entry | |
entryId | Yes | ID of the list entry to update | |
listId | Yes | ID of the list containing the entry |
Input Schema (JSON Schema)
{
"properties": {
"attributes": {
"additionalProperties": true,
"description": "Attributes to update on the list entry",
"properties": {
"stage": {
"description": "New stage value (e.g., 'Demo Scheduling', 'Interested', 'Won')",
"type": "string"
}
},
"type": "object"
},
"entryId": {
"description": "ID of the list entry to update",
"type": "string"
},
"listId": {
"description": "ID of the list containing the entry",
"type": "string"
}
},
"required": [
"listId",
"entryId",
"attributes"
],
"type": "object"
}