Update Customer Custom Field Values (Bulk)
gorgias_update_customer_fieldsUpdate multiple custom field values for a Gorgias customer in one request. Pass customer ID and field definitions with new values; omit fields to keep unchanged.
Instructions
PUT /api/customers/{customer_id}/custom-fields — Update multiple custom field values on a customer in a single request. Each item in the 'fields' array requires 'id' (the CUSTOM FIELD DEFINITION ID from GET /api/custom-fields) and 'value'. Fields not included are left unchanged. Returns array of updated field value objects.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| fields | Yes | Array of custom field updates. Each item needs 'id' (definition ID) and 'value'. The request body sent to the API is this array directly. | |
| customer_id | Yes | The ID of the customer whose custom field values are being updated |