Entity description
An ImportJobItem entity represents a single record processed during an import job. Each item contains details about the action performed, its status, the line number from the source file, and any associated entity data.
Properties
Name | Description | Type | Example |
---|---|---|---|
uid | Unique identifier of the import job item | string | item-123abc |
import_job_uid | Reference to the parent import job | string | job-xyz789 |
action | The action performed for this record (create , update , skip ) | string | create |
line_number | Line number in the source file | number | 42 |
entity | The entity data being imported | object | { "name": "John Doe", "email": "[email protected]" } |
status | Current status of the import detail (pending , processing , done , error ) | string | done |
error_message | Error message if the import failed | string | null |
created_at | Creation timestamp in ISO 8601 format | string | 2023-01-15T08:30:00.000Z |
updated_at | Last update timestamp in ISO 8601 format | string | 2023-01-15T08:35:00.000Z |
Example
{
"uid": "item-123abc",
"import_job_uid": "job-xyz789",
"action": "create",
"line_number": 42,
"entity": {
"name": "John Doe",
"email": "[email protected]"
},
"status": "done",
"error_message": null,
"created_at": "2023-01-15T08:30:00.000Z",
"updated_at": "2023-01-15T08:35:00.000Z"
}