create_record
Need to add a new ContactNote, Task, or other record to Virtuous CRM? Specify the object type and body to get a preview, then confirm to create.
Instructions
MUTATING: create a new record via POST /api/{object_type}.
DO NOT call with confirm=true unless the user has explicitly approved creating
this exact record. With confirm=false this performs no change and returns a
preview to show the user. NOTE: to create Contacts/Gifts safely, prefer
create_transaction (it runs through Virtuous matching/validation).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | JSON body for the new record. | |
| confirm | No | Must be true to actually create. Set ONLY after explicit user approval. | |
| object_type | Yes | Object to create, e.g. 'ContactNote', 'ContactTag', 'Task', 'Relationship'. |