# Get export center exports GET /v3/exports Endpoint: GET /v3/exports Security: API_Key ## Query parameters: - `page` (integer) Number of results page of an endpoint with paginated results - `size` (integer) - `sortBy` (string) Controls sorting Enum: "date_exported", "item_name", "run_date", "export_name", "exported_item_type", "requested_by", "status", "is_scheduled" - `sortDesc` (boolean) Controls sorting order - `exportedItemType` (string) aggregate filter for different export types and item types Enum: "audit", "web_journey", "app_journey", "live_connect", "consent_categories", "alert", "account_usage", "grid_data" - `search` (string) Filter by item or export name in "contains" mode Example: "my audit" - `requestedByUserId` (integer) Filter by user ID of export requestor Example: 123 - `exportIds` (array) Filter by a list of one or more export IDs, comma separated (example exportIds=1,2 or exportIds=1) ## Response 200 fields (application/json): - `metadata` (object, required) Common metadata for iterable - `metadata.pagination` (object, required) - `metadata.pagination.totalCount` (integer, required) Total number of items available from all result pages combined - `metadata.pagination.totalPageCount` (integer, required) Total number of pages available - `metadata.pagination.pageSize` (integer, required) Page size - number of items per result page configured by query parameter or default page size - `metadata.pagination.currentPageSize` (integer, required) Number of items in current result page - `metadata.pagination.currentPageNumber` (integer, required) Current page number/ordinal - `exports` (array, required) - `exports.exportId` (integer, required) Unique ID of an export - `exports.dateExported` (string, required) Date-time in [RFC3339 profile ISO 8601 format](https://www.ietf.org/rfc/rfc3339.txt) with the following additional restrictions: 1. An uppercase T must separate the date and time portions. 2. An uppercase Z must denote that a numeric time zone offset isn't present. In general, these timestamp requirements are the same in [AWS Step Functions - Choice Rules](https://docs.aws.amazon.com/step-functions/latest/dg/amazon-states-language-choice-state.html) Example: "2016-08-18T17:33:00Z" - `exports.exportType` (string, required) Enumeration of all high-level export types Enum: "AUDIT_RUN_EXPORT", "WEB_JOURNEY_RUN_EXPORT", "APP_JOURNEY_RUN_EXPORT", "MANUAL_JOURNEY_RUN_EXPORT", "CONSENT_CATEGORY_EXPORT", "ALERT_EXPORT", "ACCOUNT_USAGE_EXPORT", "GRID_DATA_EXPORT" - `exports.itemType` (string) Enum: "audit", "web_journey", "app_journey", "live_connect", "consent_categories", "alert", "account_usage", "grid_data" - `exports.itemId` (integer) ID of a data collector, see ItemType Example: 107239 - `exports.itemName` (string) Name of an item this export has been executed for, see ItemType Example: "My Audit" - `exports.runId` (integer) Example: 33010 - `exports.runDate` (string) Date-time in [RFC3339 profile ISO 8601 format](https://www.ietf.org/rfc/rfc3339.txt) with the following additional restrictions: 1. An uppercase T must separate the date and time portions. 2. An uppercase Z must denote that a numeric time zone offset isn't present. In general, these timestamp requirements are the same in [AWS Step Functions - Choice Rules](https://docs.aws.amazon.com/step-functions/latest/dg/amazon-states-language-choice-state.html) Example: "2016-08-18T17:33:00Z" - `exports.specificExportType` (string, required) Specific export type, for example AuditRun_ExportTypeEnum for audits - `exports.exportName` (string, required) - `exports.requestedByUserId` (integer, required) ID of a user Example: 123 - `exports.exportStatus` (string, required) Enum: "queued", "in_progress", "completed", "failed", "no_data" - `exports.exportDownloadLink` (string, required) Export file download link Example: "https://api.observepoint.com/v3/exports/550e8400-e29b-41d4-a716-446655440000" - `exports.scheduleId` (integer) - `exports.isScheduled` (boolean) Whether the export is scheduled or not ## Response 400 fields (application/json): - `timestamp` (string) - `message` (string) - `details` (string) - `validationReport` (object)