Update Records
Overview
Updates fields of data records
Category: Data
Use this action to update one or more data records of a given object type. Provide the type and IDs of records to be updated and the field values to set.
Request
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
objectType |
string | Yes | Any core or custom object in the data model | Jobs |
ids |
array of string | Yes | An array of IDs of the records to update. The IDs must be for records of the selected type. Min items: 1 |
["0014ccb7-73ad-40e1-9282-2c492a0f313a","00148d32-10ef-4264-adfe-0ff3ece68d92"] |
fields |
object | Yes | Field names and values to be set | {"Description":"Updated by automation","NotesComments":"This is an automation!"} |
Response
This action’s output is available as $updateRecords in JSONata expressions. See Response format for the standard result.data / result.errors structure and error handling patterns.
| Field | Type | Description |
|---|---|---|
result.data.uid1, result.data.uid2, … |
string | UIDs of the affected records |
Example output:
{
"uid1": "0014ccb7-73ad-40e1-9282-2c492a0f313a",
"uid2": "00148d32-10ef-4264-adfe-0ff3ece68d92"
}
Feedback
Was this page helpful?