> ## 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 On-Hold Conversions

Returns conversions currently in on-hold status. On-hold conversions are pending review before being approved or rejected. Use filters to narrow the results by date range, offer, or affiliate.

Pagination is controlled through the `page` and `page_size` **query parameters**, not the JSON request body. For example, `?page=2&page_size=100` returns the second page of 100 results.

Limited to the prior 365 days and a maximum date range of one year.


## OpenAPI

````yaml openapi/reporting-onhold.yaml post /networks/reporting/onhold
openapi: 3.0.3
info:
  title: Everflow Network API - On-Hold Conversion Reporting
  description: >
    On-hold conversion reporting and management endpoints for the Everflow
    partner marketing platform. For more detail, see [On Hold (Conversions)
    Report](https://helpdesk.everflow.io/customer/on-hold-conversions-report) in
    the Help Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting
    description: On-hold conversion reporting and management endpoints.
paths:
  /networks/reporting/onhold:
    post:
      tags:
        - Reporting
      summary: Search On-Hold Conversions
      parameters:
        - in: query
          name: page
          required: false
          schema:
            type: integer
            minimum: 1
            default: 1
          description: The page of results to retrieve.
        - in: query
          name: page_size
          required: false
          schema:
            type: integer
            minimum: 1
            default: 50
          description: The number of results to return per page.
      requestBody:
        required: true
        content:
          application/json:
            example:
              show_conversions: true
              show_events: false
              from: '2025-01-01'
              to: '2025-01-31'
              timezone_id: 67
              currency_id: USD
              query:
                filters: []
                search_terms: []
            schema:
              type: object
              required:
                - from
                - to
                - timezone_id
                - show_conversions
                - show_events
              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.
                show_conversions:
                  type: boolean
                  description: Include base on-hold conversion records.
                show_events:
                  type: boolean
                  description: Include post-conversion event records.
                query:
                  type: object
                  description: Optional filters and search terms 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
                              - status
                              - 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:
                  conversions:
                    type: array
                    items:
                      type: object
                      description: Conversion record with on-hold details.
                  paging:
                    type: object
                    properties:
                      page:
                        type: integer
                      page_size:
                        type: integer
                      total_count:
                        type: integer
      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

````