> ## 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 Offers

Export offer data in the specified format. Returns offer data filtered by the query criteria. Supports CSV and other formats.


## OpenAPI

````yaml openapi/offers-extras.yaml post /networks/export/offers
openapi: 3.0.3
info:
  title: Everflow Network API - Offers (Additional Endpoints)
  description: >
    Additional offer management endpoints for the Everflow partner marketing
    platform. Includes bulk editing, copying, streaming, payout/revenue config,
    forwarding rules, and more.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Offers
    description: Additional endpoints for managing offers.
paths:
  /networks/export/offers:
    post:
      tags:
        - Offers
      summary: Export Offers
      requestBody:
        required: true
        content:
          application/json:
            examples:
              csv_basic:
                summary: Export basic fields as CSV
                value:
                  format: csv
                  fields:
                    - network_offer_id
                    - name
                    - offer_status
                    - payout_type
                    - payout_amount
                  query:
                    filters:
                      offer_status: active
              json_with_filters:
                summary: Export as JSON with filters
                value:
                  format: json
                  fields:
                    - network_offer_id
                    - name
                    - destination_url
                    - visibility
                  query:
                    search_terms:
                      - search_type: name
                        value: insurance
                    filters:
                      offer_status: active
                      visibilities:
                        - public
            schema:
              type: object
              required:
                - format
                - fields
              properties:
                format:
                  type: string
                  enum:
                    - csv
                    - json
                  description: Export format.
                fields:
                  type: array
                  description: Array of field names to include in the export.
                  items:
                    type: string
                    enum:
                      - network_offer_id
                      - name
                      - category
                      - network_advertiser_id
                      - network_offer_group_id
                      - internal_notes
                      - destination_url
                      - server_side_url
                      - is_view_through_enabled
                      - view_through_destination_url
                      - preview_url
                      - offer_status
                      - currency_id
                      - project_id
                      - date_live_until
                      - is_using_explicit_terms_and_conditions
                      - terms_and_conditions
                      - is_caps_enabled
                      - daily_conversion_cap
                      - weekly_conversion_cap
                      - monthly_conversion_cap
                      - global_conversion_cap
                      - daily_payout_cap
                      - weekly_payout_cap
                      - monthly_payout_cap
                      - global_payout_cap
                      - daily_revenue_cap
                      - weekly_revenue_cap
                      - monthly_revenue_cap
                      - global_revenue_cap
                      - daily_click_cap
                      - weekly_click_cap
                      - monthly_click_cap
                      - global_click_cap
                      - redirect_mode
                      - is_must_approve_conversion
                      - is_allow_duplicate_conversion
                      - is_duplicate_filter_enabled
                      - duplicate_filter_targeting_action
                      - network_tracking_domain_id
                      - is_use_secure_link
                      - is_allow_deep_link
                      - is_session_tracking_enabled
                      - session_tracking_lifespan_hour
                      - is_view_through_session_tracking_enabled
                      - view_through_session_tracking_lifespan_minute
                      - is_fail_traffic_enabled
                      - redirect_routing_method
                      - redirect_internal_routing_type
                      - visibility
                      - time_created
                      - time_saved
                      - conversion_method
                      - is_whitelist_check_enabled
                      - is_use_scrub_rate
                      - scrub_rate_status
                      - scrub_rate_percentage
                      - session_definition
                      - session_duration
                      - app_identifier
                      - entry_name
                      - payout_type
                      - payout_amount
                      - payout_percentage
                      - revenue_type
                      - revenue_amount
                      - revenue_percentage
                      - network_advertiser_name
                      - network_advertiser_account_manager
                      - network_advertiser_sales_manager
                      - suppression_file_url
                      - unsubscribe_url
                      - countries
                      - network_tracking_domain_url
                      - category_name
                      - channels
                      - offer_encoded_value
                status:
                  type: string
                  enum:
                    - active
                    - paused
                    - pending
                    - deleted
                  description: Filter by offer status (top-level shortcut).
                query:
                  type: object
                  description: >-
                    Filter criteria for the export. Uses the same search terms
                    and filters as the offerstable endpoint.
                  properties:
                    search_terms:
                      type: array
                      items:
                        type: object
                        properties:
                          search_type:
                            type: string
                            enum:
                              - name
                              - encoded_value
                              - advertiser_name
                          value:
                            type: string
                      description: Text search filters.
                    filters:
                      type: object
                      description: Structured filters to narrow results.
                      properties:
                        offer_status:
                          type: string
                          enum:
                            - active
                            - paused
                            - pending
                            - deleted
                        visibilities:
                          type: array
                          items:
                            type: string
                            enum:
                              - public
                              - require_approval
                              - private
                        labels:
                          type: array
                          items:
                            type: string
                        network_category_ids:
                          type: array
                          items:
                            type: integer
                        network_advertiser_ids:
                          type: array
                          items:
                            type: integer
                        network_offer_group_id:
                          type: integer
                        payout_types:
                          type: array
                          items:
                            type: string
                        revenue_types:
                          type: array
                          items:
                            type: string
                        country_ids:
                          type: array
                          items:
                            type: integer
                        platform_ids:
                          type: array
                          items:
                            type: integer
                        device_type_ids:
                          type: array
                          items:
                            type: integer
                        business_unit_ids:
                          type: array
                          items:
                            type: integer
                        account_manager_ids:
                          type: array
                          items:
                            type: integer
                        sales_manager_ids:
                          type: array
                          items:
                            type: integer
                        network_tracking_domain_ids:
                          type: array
                          items:
                            type: integer
                        network_channel_ids:
                          type: array
                          items:
                            type: integer
      responses:
        '200':
          description: >-
            OK — returns exported data in the requested format. CSV format
            returns a file with headers as the first row. JSON format returns
            newline-delimited JSON objects.
        '400':
          description: Bad request — invalid format or parameters.
      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

````