# Get status of items import Retrieves information about the progress of importing items into the project. This API call retrieves data on the last import carried out through the API or Publisher Account. Endpoint: GET /v1/admin/projects/{project_id}/connectors/import_items/import/status Version: 2.0.0 Security: basicAuth ## Path parameters: - `project_id` (integer, required) Project ID. You can find this parameter in your Publisher Account next to the name of the project. Example: 44056 ## Response 200 fields (application/json): - `status` (string) Import status. Enum: "initialized", "process", "done", "error" - `date_created` (string) The timestamp of the import creation operation in GMT+3 timezone. Example: "2024-11-19T14:27:31+03:00" - `date_updated` (string) The timestamp when the import was interrupted due to an error in GMT+3 timezone. Example: "2024-11-19T15:27:31+03:00" - `date_completed` (string) The timestamp of completion of the import operation in GMT+3 timezone. If the import was interrupted due to an error and no items were imported, an empty string will be returned. Example: "2024-11-19T15:27:31+03:00" - `progress` (integer) The progress of the import execution in percent. Example: 100 - `error` (string) Description of the general import error. - `error_code` (string) The code of the general import error. - `result` (object) An object with data on the import results and import errors for specific items SKU. Example: {"errors_count":2,"total_entities_count":10,"errors_by_sku":[{"sku":"com.xsolla.sword_1","type":"virtual_items","error_code":4055,"error_message":"[0401-4055]: Item default price not set"},{"sku":"","type":null,"error_code":1817,"error_message":"[0410-1817]: SKU can't be empty"}]} - `result.errors_count` (integer) The number of items that had errors during import. Example: 2 - `result.total_entities_count` (integer) The total number of imported items. Example: 10 - `result.errors_by_sku` (array) An array of objects with data on import errors for specific item SKUs. Example: [{"sku":"com.xsolla.sword_1","type":"virtual_items","error_code":4055,"error_message":"[0401-4055]: Item default price not set"},{"sku":"","type":null,"error_code":1817,"error_message":"[0410-1817]: SKU can't be empty"}] - `result.errors_by_sku.sku` (string) SKU of the imported item. Example: "sku_1" - `result.errors_by_sku.type` (string) Type of item. Enum: "virtual_good", "virtual_currency", "virtual_currency_packages", "bundle" - `result.errors_by_sku.error_code` (integer) The import error code for a specific item SKU. Example: 1001 - `result.errors_by_sku.error_message` (string) The description of the import error for a specific item SKU. Example: "Something went wrong" ## Response 401 fields (application/json): - `statusCode` (integer) Example: 401 - `errorCode` (integer) Example: 1020 - `errorMessage` (string) Example: "[0401-1020]: Error in Authentication method occurred"