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_importedintegerrequiredRows written so far. Final once `status` is `completed`.
errorstringWhy 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"
}