# Get import job details Retrieves the current status and details of a specific import job, including processing progress and any errors. Endpoint: GET /api/v1/import/{id} Version: 1.0 Security: header ## Path parameters: - `id` (integer, required) ## Response 200 fields (application/json): - `bulkImportId` (integer) - `userId` (string, required) UUID with type prefix Example: "us_01hxcvk1hjexere4pvtrj0ymqq" - `type` (string, required) Enum: "FOLLOWING", "BLOCK", "MUTE", "DOMAIN_BLOCK", "BOOKMARKS", "LISTS" - `state` (string, required) Enum: "PENDING", "SCHEDULED", "IN_PROGRESS", "COMPLETED" - `overwrite` (boolean) - `originalFilename` (string,null) - `likelyMismatched` (boolean) - `totalItems` (integer,null) - `importedItems` (integer,null) - `processedItems` (integer,null) - `createdAt` (string, required) Example: "2022-03-10T16:15:50Z" - `updatedAt` (string, required) Example: "2022-03-10T16:15:50Z" ## Response 401 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 403 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation ## Response 404 fields (application/json): - `errorCode` (string, required) Error code - `message` (string, required) Error message - `docUrl` (string) Link to documentation