Update brain object
set_graph_object_fieldsRename or re-describe an object in the user's graph, or set any of its type-specific fields: a contact's phone, email, headline or location, a company's funding stage, and so on. 'name' and 'description' work on every type (files included); other field names come from the type's field dictionary, which get_graph_object returns as 'editable_fields'. Read that first rather than guessing a name, because a name the dictionary does not have is skipped. Pass null to clear a field. Identify the object by object_id (search_graph_objects returns it).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fields | Yes | Field name -> new value (e.g. {'name': 'Q3 deck'} or {'headline': 'CTO at Acme'}). | |
| object_id | Yes | The object to update (exact id). |