Skip to main content
PATCH
Update a file's extracted values (fields and table/list cells)
Update the extracted values of a file — both scalar fields and individual table/list cells.
This endpoint replaces the value-updating use of PATCH /schemas, which is now deprecated for that purpose. Use PATCH /schemas only to change schema field definitions.

Request Parameters

Path Parameters

Request Body

fieldPaths entries

Each entry must specify exactly one of value or cells.

cells entries

Example

How table updates are applied

Table updates are a full read-modify-write. The complete CSV-backed rows are loaded, the specified cells are applied, and the table is re-persisted — updating the preview, document history, audit trail, and re-flattening the document. Avoid issuing concurrent updates against the same table.
This endpoint accepts an optional Idempotency-Key request header so a retry cannot apply the change twice. See Idempotent requests.

Errors

A 422 is returned for an invalid fileId, an invalid or missing schemaValueId, empty or malformed fieldPaths, an unknown field path or column, or a rowIndex outside the table’s row range. See Error responses.

Authorizations

x-api-key
string
header
required

API key for authentication

Headers

Idempotency-Key
string

Optional opaque key (max 255 chars, UUIDv4 recommended) making this request idempotent for 24h: a retry with the same key and body replays the original response with Idempotent-Replayed: true.

Path Parameters

fileId
string
required

Body

application/json

The file values to update

The body is of type string.

Response

The file values are updated

success
boolean