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

# Search Post-Conversion Events

Returns post-conversion event data aggregated by event type and up to two additional columns. Post-conversion events are actions that occur after the initial conversion, such as upsells, renewals, or custom events.

<Note>The date range is limited to a maximum of one year (367 days). Requests exceeding this limit will return an error.</Note>


## OpenAPI

````yaml openapi/reporting-aggregated.yaml post /networks/reporting/postconversions
openapi: 3.0.3
info:
  title: Everflow Network API - Aggregated Reporting
  description: >
    Aggregated reporting endpoints for the Everflow partner marketing platform.
    Retrieve grouped reporting data, summaries, variance reports,
    post-conversion event reports, and MTTI metrics.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting
    description: Aggregated reporting endpoints.
paths:
  /networks/reporting/postconversions:
    post:
      tags:
        - Reporting
      summary: Search Post-Conversion Events
      requestBody:
        required: true
        content:
          application/json:
            example:
              from: '2026-03-01'
              to: '2026-03-08'
              timezone_id: 90
              currency_id: USD
              columns:
                - column: offer
                - column: affiliate
                - column: event_name
            schema:
              type: object
              required:
                - from
                - to
                - timezone_id
                - columns
              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 ID for the report.
                currency_id:
                  type: string
                  description: >-
                    Currency code for monetary values. Currently only `USD` is
                    supported.
                columns:
                  type: array
                  description: >
                    Columns to break down the data by. Must include a pivot
                    column (`event_name` or `advertiser_event_name`) plus one or
                    two additional columns.
                  items:
                    type: object
                    required:
                      - column
                    properties:
                      column:
                        type: string
                        description: The dimension to group by.
                        enum:
                          - offer
                          - affiliate
                          - advertiser
                          - campaign
                          - offer_group
                          - country
                          - category
                          - date
                          - month
                          - week
                          - platform
                          - browser
                          - device_type
                          - device_brand
                          - affiliate_manager
                          - account_manager
                          - event_name
                          - advertiser_event_name
                          - source_id
                          - sub1
                          - sub2
                          - label
                          - offer_url
                          - billing_frequency
                          - currency_id
                          - affiliate_tier
                          - region
                          - city
                          - carrier
                          - isp
                          - os_version
                          - language
                          - dma
                          - hour
                          - hourly
                          - coupon_code
                          - project_id
                          - tracking_domain
                          - business_unit
                          - referrer
                          - offer_status
                          - payout_type
                          - revenue_type
                query:
                  type: object
                  description: Optional filters to narrow results.
                  properties:
                    filters:
                      type: array
                      items:
                        type: object
                        properties:
                          resource_type:
                            type: string
                            enum:
                              - offer
                              - offer_group
                              - affiliate
                              - advertiser
                              - offer_creative
                              - transaction_id
                              - campaign
                              - billing_frequency
                              - business_unit
                              - label
                              - category
                              - sub1
                              - sub2
                              - sub3
                              - sub4
                              - sub5
                              - sub6
                              - sub7
                              - sub8
                              - sub9
                              - sub10
                              - source_id
                              - country
                              - account_manager
                              - affiliate_manager
                              - sales_manager
                              - account_executive
                              - offer_url
                              - currency_id
                              - affiliate_tier
                              - adv1
                              - adv2
                              - adv3
                              - adv4
                              - adv5
                              - adv6
                              - adv7
                              - adv8
                              - adv9
                              - adv10
                              - browser
                              - carrier
                              - city
                              - coupon_code
                              - dma
                              - date
                              - hourly
                              - device_brand
                              - device_type
                              - hour
                              - isp
                              - language
                              - month
                              - os_version
                              - payout_amount
                              - payout_type
                              - platform
                              - project_id
                              - referrer
                              - region
                              - revenue_amount
                              - revenue_type
                              - week
                              - conversion_id
                              - order_id
                              - tracking_domain
                              - offer_payout_revenue_id
                              - country_code
                              - advertiser_billing_frequency
                              - error_code
                          filter_id_value:
                            type: string
                    search_terms:
                      type: array
                      items:
                        type: object
                        properties:
                          search_type:
                            type: string
                            enum:
                              - transaction_id
                              - sub_1
                              - sub_2
                              - sub_3
                              - sub_4
                              - sub_5
                              - adv_1
                              - adv_2
                              - adv_3
                              - adv_4
                              - adv_5
                              - source_id
                              - user_ip
                              - user_agent
                              - order_id
                              - country
                              - region
                              - city
                              - status
                              - is_scrub
                              - email
                              - coupon_code
                              - event_name
                          value:
                            type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  report:
                    type: array
                    items:
                      type: object
                      properties:
                        columns:
                          type: array
                          items:
                            type: object
                            properties:
                              column_type:
                                type: string
                                description: The dimension this column represents.
                              id:
                                type: string
                                description: The unique identifier for this column value.
                              label:
                                type: string
                                description: Human-readable label for this column value.
                        reporting:
                          type: object
                          description: Aggregated reporting metrics for this row.
                          properties:
                            imp:
                              type: integer
                              description: Impression count.
                            total_click:
                              type: integer
                              description: Total click count.
                            ctr:
                              type: number
                              description: Click-through rate.
                            total_cv:
                              type: integer
                              description: Total conversion count.
                            cv:
                              type: integer
                              description: Conversion count.
                            view_through_cv:
                              type: integer
                              description: View-through conversion count.
                            total_event:
                              type: integer
                              description: Total event count.
                            event:
                              type: integer
                              description: Event count.
                            view_through_event:
                              type: integer
                              description: View-through event count.
                            evr:
                              type: number
                              description: Event rate.
                            payout:
                              type: number
                              description: Total payout amount.
                            revenue:
                              type: number
                              description: Total revenue amount.
                            event_revenue:
                              type: number
                              description: Revenue from events.
                            profit:
                              type: number
                              description: Revenue minus payout.
                            margin:
                              type: number
                              description: Profit margin percentage.
                            gross_sales:
                              type: number
                              description: Total gross sales amount.
                            view_through_gross_sales:
                              type: number
                              description: View-through gross sales.
                            avg_sale_value:
                              type: number
                              description: Average sale value.
                            roas:
                              type: number
                              description: Return on ad spend.
      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

````