Update Data
Updates existing Entries
Swagger
Params
name | Parameter type | Data Type | Values | Description |
---|---|---|---|---|
entryTypeId | Path | string or int | company or 2011 | the unique identifier of the entry type |
rows | Body | Array[Entries] | - | Any array of entries to update, limit to array size of no more than 1000 |
Requests
PATCH {{host}}/api/rest/v4/data/entrydata/rows/{{entryTypeId}} HTTP/1.1
Authorization: {{auth}}
Content-Type: application/json
[{
"EntryId": "2772624",
"Subject": "Updated Interactions"
}]
Responses
HTTP/1.1 200 OK
[{
"EntryId": "2772624",
"Subject": "Updated Interactions"
}]