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
Example request
{
"updates": [
{
"id": "affinity-data-location",
"value": {
"type": "company-multi",
"data": [
{
"id": 1
},
{
"id": 2
}
]
}
}
]
}Response
OK