> ## Documentation Index
> Fetch the complete documentation index at: https://domoinc-openapi-sync-dataflows.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Export Status

> Checks the status of exports for the specified DataSet.



## OpenAPI

````yaml /openapi/product/export.yaml get /api/query/v1/export/{DATASOURCE_ID}
openapi: 3.0.0
info:
  title: Export to S3 API
  version: v1
  description: API for exporting Domo Datasets to an AWS S3 bucket.
servers:
  - url: https://{instance}.domo.com
    description: Domo Instance
    variables:
      instance:
        default: api
        description: Your specific Domo instance name (e.g., mycompany)
security:
  - developerToken: []
tags:
  - name: Exports
    description: Manage dataset exports to S3.
paths:
  /api/query/v1/export/{DATASOURCE_ID}:
    parameters:
      - name: DATASOURCE_ID
        in: path
        required: true
        description: The ID of the Dataset.
        schema:
          type: string
          example: aa7d9422-9abe-4581-bbf3-4a8cb5d3fc25
    get:
      tags:
        - Export to S3 API
      summary: Export Status
      description: Checks the status of exports for the specified DataSet.
      responses:
        '200':
          description: OK. Returns a list of export statuses.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExportStatus'
        '401':
          description: Access denied. Token is invalid or expired.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Insufficient permissions for export access.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '404':
          description: Dataset ID not found.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Unexpected server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ExportStatus:
      type: object
      description: Represents the status of a dataset export.
      properties:
        bucket:
          type: string
        compression:
          type: string
          example: none
        errorCode:
          type: string
          nullable: true
        exportFormat:
          type: string
          example: csv
        exportId:
          type: string
          format: uuid
        exportStatus:
          type: string
          enum:
            - none
            - success
            - running
            - failed
          example: success
        finished:
          type: string
          format: date-time
        message:
          type: string
          nullable: true
        started:
          type: string
          format: date-time
        urlRowCountMap:
          $ref: '#/components/schemas/UrlRowCountMap'
    ErrorResponse:
      type: object
      properties:
        errorCode:
          type: string
        message:
          type: string
          description: A human-readable error message.
    UrlRowCountMap:
      type: object
      additionalProperties:
        type: integer
      example:
        additionalProp1: 0
        additionalProp2: 0
  securitySchemes:
    developerToken:
      type: apiKey
      in: header
      name: X-DOMO-Developer-Token
      description: Domo Developer Token for authentication.

````