v1

latestOpenAPI 3.1.1Proprietary2026-07-2687313591.4 KB
Persons

Perform batch operations on a person's fields

Perform batch operations on a person'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.

patch/v2/persons/{personId}/fields

Path parameters

personIdinteger required

Person ID

Request body

operation'update-fields' required

Example request

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

Response

OK

operation'update-fields'

The set of supported batch operation types for persons.