update_record
Update a record in Virtuous CRM by specifying object type, record ID, and updated fields. Requires explicit user approval to execute changes after preview.
Instructions
MUTATING: update a record via PUT /api/{object_type}/{record_id}.
DO NOT call with confirm=true unless the user has explicitly approved this exact change. With confirm=false this performs no change and returns a preview.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Full JSON body with updated fields. | |
| confirm | No | Must be true to actually update. Set ONLY after explicit user approval. | |
| record_id | Yes | The id of the record to update. | |
| object_type | Yes | Object to update, e.g. 'Contact', 'Gift', 'ContactNote'. |