ImportCsvStatusData

Progress of the sheet's most recent CSV import.

Properties

statusstringrequired

`processing` — rows still arriving. `completed` — finished; `rows_imported` is final. `failed` — see `error`. `unknown` — no recent import status is held for this sheet.

"processing""completed""failed""unknown"
rows_importedintegerrequired

Rows written so far. Final once `status` is `completed`.

errorstring

Why the import failed. A header named in `mapping` but absent from the file is reported here, e.g. `header "Email" not found in file`.

Example

ImportCsvStatusData example
{
  "status": "processing",
  "rows_imported": 0,
  "error": "string"
}