> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kibocommerce.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Import Export Overview

> Bulk import and export Kibo resources using CSV files for efficient data management.

# Import Export

The Import Export APIs are used to "import and export" Kibo's resources efficiently in **CSV** file format.

For Importing, files are first zipped and uploaded via the **Files API**. Then an import job can be created, referencing the uploaded files using the **Import API.**

For Exporting, create an export job via the **Export API**, specifying the resource to be exported. Then after completion, the csv extracts can be downloaded via the **File API**.

For detailed usage, file format specifications, and field references, see the [Import/Export API Overview](/pages/import-export-api-overview).

## API Endpoints

### Import

| Endpoint                                                     | Description                                                          |
| ------------------------------------------------------------ | -------------------------------------------------------------------- |
| [Create Import Job](/api-reference/import/create-import-job) | `POST /platform/data/import` — Creates a new import job              |
| [Get Import Jobs](/api-reference/import/get-import-jobs)     | `GET /platform/data/import` — Retrieves a list of all import jobs    |
| [Get Import Job](/api-reference/import/get-import-job)       | `GET /platform/data/import/{id}` — Retrieves an import job by ID     |
| [Delete Import Job](/api-reference/import/delete-import-job) | `DELETE /platform/data/import/{id}` — Deletes an existing import job |

### Export

| Endpoint                                                     | Description                                                          |
| ------------------------------------------------------------ | -------------------------------------------------------------------- |
| [Create Export Job](/api-reference/export/create-export-job) | `POST /platform/data/export` — Creates a new export job              |
| [Get Export Jobs](/api-reference/export/get-export-jobs)     | `GET /platform/data/export` — Retrieves a list of all export jobs    |
| [Get Export Job](/api-reference/export/get-export-job)       | `GET /platform/data/export/{id}` — Retrieves an export job by ID     |
| [Delete Export Job](/api-reference/export/delete-export-job) | `DELETE /platform/data/export/{id}` — Deletes an existing export job |

## See Also

* [Import/Export API Overview](/pages/import-export-api-overview) — Detailed usage guide, file format specifications, and field references
