---
title: "Get List of Bulk Exports"
method: GET
path: "/api/ot-insights/v1/bulk-export-jobs"
tags: ["Bulk Export"]
---

# Get List of Bulk Exports

`GET /api/ot-insights/v1/bulk-export-jobs`

Use this API to retrieve a list of bulk exports. The response will include the created date, ID, and status of each export.

> 🗒 Things to Know
> 
> - The `status` of a bulk export will automatically change to `Expired` 10 days after its creation.

## Query parameters

- `page` integer — Results page to be retrieved (0..N). Example- '?page=1'
- `size` integer — Number of records per page (1..2000). Example- '?size=30'
- `sort` 'name,asc' | 'name,desc' | 'status,asc' | 'status,desc' | 'createdDate,asc' | 'createdDate,desc' | 'completedDate,asc' | 'completedDate,desc' | 'expiryDate,asc' | 'expiryDate,desc' — The sort criteria that dictates the order of the results.

## Response `200`

OK

- PageBulkExportListItem
  - `content` BulkExportListItem[] — The data of the returned objects.
    - `runId` string, uuid — The unique identifier of the bulk export.
    - `name` string — The name of the bulk export.
    - `status` 'EXPORT_IN_PROGRESS' | 'COMPLETED' | 'FAILED' | 'CANCELLED' — The current status of the bulk export.
    - `createdDate` string, date-time — The date and time that the bulk export was initiated.
    - `createdBy` AttributeValueInformation
      - `id` string, uuid — The attribute option GUID.
      - `value` string — The attribute option value.
      - `valueKey` string — The attribute option value key for translation.
      - `colorCode` string — The attribute option color code.
      - `optionSelectionValue` string — The attribute option selection value.
    - `exportType` 'Consent Receipts' | 'Cookie Receipts' | 'Data Subjects' — The type of data to export.
    - `fileFormat` 'csv' | 'json' — The file format of the bulk export.
    - `completionDate` string, date-time — The date and time that the bulk export was completed.
    - `expiryDate` string, date-time — The date and time that the bulk export file expires.
  - `pageable` PageableObject
    - `offset` integer
    - `sort` SortObject
      - `empty` boolean
      - `sorted` boolean
      - `unsorted` boolean
    - `pageNumber` integer
    - `pageSize` integer
    - `paged` boolean
    - `unpaged` boolean
  - `last` boolean — This flag indicates whether the current page is the last page of the list.
  - `totalElements` integer — The total number of results in the list.
  - `totalPages` integer — The total number of pages in the list.
  - `size` integer — The number of results per page.
  - `number` integer — The page number of the results.
  - `sort` SortObject
    - `empty` boolean
    - `sorted` boolean
    - `unsorted` boolean
  - `first` boolean — This flag indicates whether the current page is the first page of the list.
  - `numberOfElements` integer — The number of results on the current page.
  - `empty` boolean — This flag indicates whether no results exist on the page.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `429` — Too Many Requests. For more information, see [API Rate Limits](https://developer.onetrust.com/onetrust/reference/rate-limits-overview).
- `500` — Internal Server Error

---

[API](https://skmtc.net/onetrust/apis/platform-access-management.md) · [All operations](https://skmtc.net/onetrust/apis/platform-access-management/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/onetrust/platform-access-management/revisions/21de3aa0b170/schema)
