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

NameParameter TypeData TypeValuesDescription
entryTypeIdPathstring or intcompany or 2011The unique identifier of the entry type
Bodyarray of objectsAn 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"
    }
]