Status of the triggered ingestion activity.
ACTIVITY_CREATED - Ingestion triggered,
ACTIVITY_QUEUED - Ingestion in progress,
ACTIVITY_COMPLETED - Ingestion completed or aborted or error,
ACTIVITY_DISCARDED - Ingestion deleted from UI.
SYSTEM_FEEDBACK - Any handled error on the file, eg: file corrupted, mandatory header missing, duplicate header, etc.
UNPLANNED_ERROR - Any unhandled error.
FILE_VALIDATION - Ingestion is in progress, file header validation is done, and yet to be picked by subactivity for row validation.
ERROR_FILE_UPLOAD - Row Validation is done, file containing validation error records is being uploaded.
processingStats
Array
NA
Array of Processing Stats objects. If the activity is not completed, then this field will be an empty array.
fileError
Object
NA
File Error Object. If there is no file error, then this field will be null.
errors
Array
NA
Array of Error Objects. If there are no errors, then this will be an empty array.
Processing Stats Object
Parameter
Data Type
Field Validations
Description
identifier
String
NA
Identifier.
totalDocumentCount
Number
NA
Count of total documents parsed from the valid rows.
validRows
Number
NA
Count of valid rows.
invalidRows
Number
NA
Count of invalid rows.
File Error Object
Parameter
Data Type
Field Validations
Description
inputFileName
String
NA
Filename used in Trigger File Ingestion API.
status
String
Enum: DATA_VALIDATION_ERROR,
FILE_ERROR
Status of the error file.
DATA_VALIDATION_ERROR - This error occurs when there is a validation error in the data provided in the sheet.
FILE_ERROR - This error represents system feedback for all errors that are not data validation errors. For example, if a file is expected to be without a password but is received with a password, it falls under this category.
errorFileUrl
String
NA
URL from where the error file can be downloaded. This pre-signed URL is valid for 10 hours. This file will be in CSV format.
errors
Array
NA
Array of File Error Details Object. If there are no errors, this will be null.
Error Object
Parameter
Data Type
Field Validations
Descriptions
errorCode
String
NA
Error code. If there is no error code, then this will be null.
errorMessage
String
NA
Error message. If there is no error message, then this will be null.
errorField
String
NA
Error field. If there is no error field, then this will be null.
errorValues
Array
NA
Array of strings. Error values. If there are no error values, then this will be null.