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

# report/impressions/export

> Create or reuse a full-day CloudX impression revenue export. Requires the `reports:read` permission.



## OpenAPI

````yaml https://provisioning.cloudx.io/api/v1/openapi.yaml post /report/impressions/export
openapi: 3.0.3
info:
  title: CloudX API
  description: >-
    Use the CloudX API to retrieve reporting metrics, inspect auctions, and read
    account configuration.
  version: 1.0.0
servers:
  - url: https://provisioning.cloudx.io/api/v1
security: []
tags:
  - name: Authentication
    description: Validate CloudX API keys and inspect authenticated account details.
  - name: Reporting
    description: >-
      Retrieve CloudX reporting metrics for apps, ad units, bidders, and
      exports.
  - name: Configuration
    description: Read live, draft, and published CloudX account configuration.
  - name: Auction Inspection
    description: Inspect auctions, rounds, bids, and related delivery details.
paths:
  /report/impressions/export:
    post:
      tags:
        - Reporting
      summary: report/impressions/export
      description: >-
        Create or reuse a full-day CloudX impression revenue export. Requires
        the `reports:read` permission.
      operationId: postReportImpressionsExport
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ImpressionExportRequest'
      responses:
        '200':
          description: An identical export is ready.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImpressionExportResponse'
        '202':
          description: The export is queued or processing.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ImpressionExportResponse'
        '400':
          description: Invalid request parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '403':
          description: Forbidden.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '409':
          description: The account already has the maximum number of active exports.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ImpressionExportRequest:
      type: object
      additionalProperties: false
      required:
        - date
      properties:
        date:
          type: string
          pattern: ^\d{4}-\d{2}-\d{2}$
          description: One completed UTC day within the previous 45 days.
          example: '2026-07-09'
        app_id:
          type: string
        app_bundle:
          type: string
        ad_unit_id:
          type: string
        country:
          type: string
          description: ISO 3166-1 alpha-2 country code.
        device_os:
          type: string
          enum:
            - iOS
            - Android
        bidder:
          type: string
        line_item_id:
          type: string
        test_mode:
          type: string
          enum:
            - production
            - test
            - all
          default: production
    ImpressionExportResponse:
      type: object
      required:
        - export_id
        - status
      properties:
        export_id:
          type: string
        status:
          type: string
          enum:
            - processing
            - ready
            - failed
        url:
          type: string
          format: uri
          description: Short-lived signed download URL, present only when ready.
        expires_at:
          type: string
          format: date-time
          description: Signed URL expiry, present only when ready.
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: >-
        Create or manage API keys in [CloudX
        Settings](https://app.cloudx.io/settings/api-keys).
      x-default: YOUR_CLOUDX_API_KEY

````