Monitor the import

Check the progress of your import and vTag assignment using the upload ID.

Status Values:

StatusDescription
pendingImport queued, waiting to start
queuedImport scheduled in processing queue
runningImport actively processing
successImport completed successfully
failedImport failed with errors
not_foundUpload ID not found

Processing Phases:

PhaseDescription
scanningSecurity scan of uploaded file
validatingChecking CSV structure and required fields
stagingPreparing data for import
replacingApplying virtual tags to resources
finalizingCompleting the import process
completedImport finished successfully
failedImport encountered an error

Validation Rules

Your file is validated before processing begins:

RuleRequirement
Column countExactly 8 columns required
Required fieldsResource ID and Linked Account must not be empty
Resource ID lengthMaximum 255 characters
Linked Account lengthMaximum 64 characters
Initial validationFirst 100 rows checked before full processing

Error Handling

If errors occur, the status response includes an errors array:

{
  "status": "failed",
  "errors": [
    { "line": 15, "error": "Required field 'Resource ID' is empty" },
    { "line": 42, "error": "Resource ID exceeds maximum length of 255 characters" }
  ]
}

Common Errors

ErrorCauseSolution
Invalid column countCSV has more or fewer than 8 columnsEnsure your file has exactly 8 columns
Required field emptyResource ID or Linked Account is blankPopulate all required fields
Field exceeds maximum lengthResource ID > 255 or Linked Account > 64 charsShorten the field values
Rate limit exceededMore than 2 imports in the past hourWait and retry later
Malware detectedFile flagged by security scanCheck file source and content
Language