# Import data from CSV file

Uploads and processes a CSV file for bulk import of data such as followers, blocks, or mutes from other platforms. The import is processed asynchronously after upload.

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

## Query parameters:

  - `overwrite` (boolean,null)
    Whether to overwrite existing data. If true, replaces current data with imported data

  - `type` (string, required)
    Type of data being imported (e.g., followers, blocks, mutes)
    Enum: "FOLLOWING", "BLOCK", "MUTE", "DOMAIN_BLOCK", "BOOKMARKS", "LISTS"

## Request fields (multipart/form-data):

  - `file` (string, required)

## Response 400 fields (application/json):

  - `errorCode` (string, required)
    Error code

  - `message` (string, required)
    Error message

  - `docUrl` (string)
    Link to documentation

## Response 401 fields (application/json):

  - `errorCode` (string, required)
    Error code

  - `message` (string, required)
    Error message

  - `docUrl` (string)
    Link to documentation


