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

# Export Partner Pixel Log

Exports partner (affiliate) postback pixel log data in the specified format (CSV or JSON). Accepts the same parameters as the [Get Partner Pixel Log](/api-reference/post-networksreportingpixelslog) endpoint with an additional `format` field.

Shows when partner postback URLs were fired, their HTTP response status, and any errors. Useful for debugging postback integration issues.

The response is a file download with the appropriate Content-Type and Content-Disposition headers set.


## OpenAPI

````yaml openapi/reporting-exports.yaml post /networks/reporting/affiliate/pixels/export
openapi: 3.0.3
info:
  title: Everflow Network API - Reporting Exports
  description: >
    Export endpoints for the Everflow reporting system. These endpoints allow
    you to download reporting data as CSV or JSON files. They mirror the request
    parameters of their corresponding report endpoints, with an added format
    field. For more detail, see [How to Export Your
    Data](https://helpdesk.everflow.io/customer/how-to-export-your-data) in the
    Help Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting Exports
    description: Endpoints for exporting reporting data as downloadable files.
paths:
  /networks/reporting/affiliate/pixels/export:
    post:
      tags:
        - Reporting Exports
      summary: Export Partner Pixel Log
      requestBody:
        required: true
        content:
          application/json:
            example:
              from: '2025-01-01'
              to: '2025-01-31'
              timezone_id: 67
              format: csv
              query:
                filters: []
                search_terms: []
            schema:
              type: object
              required:
                - from
                - to
                - timezone_id
                - format
              properties:
                from:
                  type: string
                  description: 'Start date (format: `YYYY-MM-DD` or `YYYY-MM-DD HH:mm:SS`).'
                to:
                  type: string
                  description: 'End date (format: `YYYY-MM-DD` or `YYYY-MM-DD HH:mm:SS`).'
                timezone_id:
                  type: integer
                  description: Timezone identifier for the date range.
                format:
                  type: string
                  enum:
                    - csv
                    - json
                  description: The file format for the export.
                query:
                  type: object
                  description: Query configuration with optional filters and search terms.
                  properties:
                    filters:
                      type: array
                      description: Filters to narrow results.
                      items:
                        type: object
                        properties:
                          resource_type:
                            type: string
                            enum:
                              - offer
                              - affiliate
                              - delivery_status
                            description: The resource type to filter on.
                          filter_id_value:
                            type: string
                            description: The value to filter on.
                    search_terms:
                      type: array
                      description: Text search terms.
                      items:
                        type: object
                        properties:
                          search_type:
                            type: string
                            enum:
                              - conversion_id
                              - payload
                              - transaction_id
                              - pixel_id
                            description: The field to search.
                          value:
                            type: string
                            description: The search value.
      responses:
        '200':
          description: >
            File download. Content-Type is `text/csv` or `application/json`
            depending on the requested format.
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````