v10

latestOpenAPI 3.1.02026-08-0375143791.1 KB
webdbs

Reprocess rows from stored snapshots

Extracts rows again from saved pages without fetching them again. Use where to select rows.

post/webdbs/collections/{collection_id}/reprocess

Path parameters

collection_idstring required

Collection ID.

Example:col_123

Collection ID.

Request body

whereobject

Rows to reprocess. Omit to reprocess every row.

tagsstring[]

Optional tags for tracking usage. Up to 20 tags, each 1 to 50 characters.

Example request

{
  "tags": [
    "production",
    "team-alpha"
  ]
}

Response

Reprocess queued

collection_idstring required

Collection ID.

run_idstring required

Queued run ID.

queuedboolean required

Whether the run was queued.

Example response

{
  "collection_id": "col_123",
  "run_id": "run_123",
  "queued": true
}