Endpoint is used to export the status of any imports done via Repsly API.
To use this endpoint you need to provide the importJobID, which is received when you import data through import endpoints.
More Info
Whendata is imported into Repsly, following scenarios can occur:
New data
If the record being inserted doesn’t exist in Repsly, then the record will be created. All newly created records are counted in the RowsInserted field.
Existing data
If the record being inserted already exists in Repsly, then the record will be updated. All updated records are counted in the RowsUpdated field.
Data with warnings
If the record being inserted has an error, but this error doesn’t prevent insertion, details about this record and the adjoining error will be shown in the Warnings part of the response. All records with warnings will still be counted in the RowsInserted field (in the case of new data) or in the RowsUpdatedfield (in the case of existing data).
Data with errors
If the record being inserted has an error, and this error prevents insertion, details about this record and the adjoining error will be shown in the Errors part of the response. All records with errors are counted in the RowsInvalid field.
Data expiration
Status of a specific import job will be available for the next 30 days.
Response definition
Name | Type | Description |
---|---|---|
ImportStatus | String | Description about the status of the Import. The status can be: Completed - import is completed Failed - import has failed Pending - import is in progress |
RowsInserted | Integer | Total numbers of new rows inserted with the import |
RowsUpdated | Integer | Total numbers of rows updated with the import |
RowsInvalid | Integer | Total numbers of rows which were not imported due to some data issues |
RowsTotal | Integer | The sum of inserted and updated rows |
Warnings\ItemID | String | ID of the record which has data warning |
Warnings\ItemName | String | Name of the field in the record which has data warning |
Warnings\ItemStatus | String | Description of the import warning for the field |
Errors\ItemID | String | ID of the record which has data error |
Errors\ItemName | String | Name of the field in the record which has data error |
Errors\ItemStatus | String | Description of the import error for the field |