v1

latestOpenAPI 3.1.1Proprietary2026-07-2687313591.4 KB
Lists

Perform batch operations on a list entry's fields

Perform batch operations on a list entry's fields.

Currently the only operation at the endpoint is update-fields, which allows you to update multiple field values with a single request. This is equivalent to calling the single field update endpoint multiple times. You can update up to 100 fields per request.

Requires the "Export data from Lists" permission.

patch/v2/lists/{listId}/list-entries/{listEntryId}/fields

Path parameters

listIdinteger required

List ID

listEntryIdinteger required

List Entry ID

Request body

operation'update-fields' required

Example request

{
  "updates": [
    {
      "id": "field-105",
      "value": {
        "type": "company-multi",
        "data": [
          {
            "id": 1
          },
          {
            "id": 2
          }
        ]
      }
    }
  ]
}

Response

OK

operation'update-fields'