# List user's import jobs

Returns a list of all import jobs created by the authenticated user, including their current status and results.

Endpoint: GET /api/v1/import
Version: 1.0
Security: header

## Response 200 fields (application/json):

  - `bulkImportId` (integer, required)

  - `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, required)

  - `originalFilename` (string,null, required)

  - `likelyMismatched` (boolean, required)

  - `totalItems` (integer,null, required)

  - `importedItems` (integer,null, required)

  - `processedItems` (integer,null, required)

  - `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


