Skip to main content

Fill Forms in Batch

Endpoint

POST /v1/batches/{batchId}/fill-forms

Description

Triggers the autofill process for selected rows within an existing batch.
This endpoint queues filling jobs for the specified row IDs, which will be processed asynchronously.

Use this when you want to manually control which rows from the uploaded table file should be filled (e.g., skipping invalid or unverified entries).


Request

Path Parameters

ParameterRequiredDescription
batchIdID of the batch for which to fill forms.

Headers

HeaderRequiredDescription
AuthorizationBearer YOUR_API_KEY
Content-Typeapplication/json

Body (JSON)

{
"row_ids": [0, 1, 2]
}

Success Response — 200 OK

{
"id": "ff_756213d6ece04a698006930cd51ebab9",
"created": "2025-07-03T15:23:23.7179273Z",
"object": "fill_forms",
"status": "started"
}