Update Data with PUT or PATCH
PATCH {{host}}/api/rest/v4/data/entrydata/rows/{{entryTypeId}}
Authorization: Bearer {{token}}
Content-Type: application/json
or
PUT {{host}}/api/rest/v4/data/entrydata/rows/{{entryTypeId}}
Authorization: Bearer {{token}}
Content-Type: application/json
Updates existing entries using either the PATCH or PUT method.
The PATCH method does not support upsert
as entries must exist. Use the POST method to create new entries.
Params
Tip: Bulk Update allows an array of up to 1000 entries
Name | Parameter Type | Data Type | Values | Description |
---|---|---|---|---|
entryTypeId | Path | string or int | company or 2011 | The unique identifier of the entry type |
Body | array of objects | An array of entries to update, limited to a maximum of 1000 entries |
Additional Requirements
- All choice values and references must utilize the ID rather than a name
Sample Requests and Responses
Body
[
{
"EntryId": "2772624",
"Subject": "Updated Interactions"
}
]
Response with statusCode 200
[
{
"EntryId": "2772624",
"Subject": "Updated Interactions"
}
]