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

# Get On-Hold Conversion Details

> Returns details for a specific on-hold conversion by its ID.




## OpenAPI

````yaml openapi/affiliate-reporting.yaml get /affiliates/reporting/onhold/{onHoldId}
openapi: 3.0.3
info:
  title: Everflow Affiliate API - Reporting
  description: >
    Reporting endpoints for the Everflow Affiliate API. These endpoints are
    accessed by affiliate/partner users using their own API key and return data
    scoped to the authenticated affiliate's account only. For more detail, see
    [Essential Reports For New
    Partners](https://helpdesk.everflow.io/collaborator/essential-reports-for-new-partners)
    in the Help Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Affiliate Reporting
    description: Reporting endpoints available to affiliate users.
paths:
  /affiliates/reporting/onhold/{onHoldId}:
    get:
      tags:
        - Affiliate Reporting
      summary: Get On-Hold Conversion Details
      description: |
        Returns details for a specific on-hold conversion by its ID.
      parameters:
        - in: path
          name: onHoldId
          required: true
          schema:
            type: string
          description: The on-hold conversion ID to retrieve.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                description: On-hold conversion details.
                properties:
                  on_hold_conversion_id:
                    type: string
                    description: Unique on-hold conversion identifier.
                  network_id:
                    type: integer
                    description: Network identifier.
                  holding_period_end:
                    type: integer
                    description: Unix timestamp when the holding period ends.
                  status:
                    type: string
                    description: Status of the on-hold conversion.
                  conversion:
                    type: object
                    description: Nested conversion details.
                    properties:
                      conversion_id:
                        type: string
                      transaction_id:
                        type: string
                      conversion_unix_timestamp:
                        type: integer
                      revenue:
                        type: number
                      sale_amount:
                        type: number
                      event_name:
                        type: string
                      sub1:
                        type: string
                      sub2:
                        type: string
                      sub3:
                        type: string
                      sub4:
                        type: string
                      sub5:
                        type: string
                      sub6:
                        type: string
                      sub7:
                        type: string
                      sub8:
                        type: string
                      sub9:
                        type: string
                      sub10:
                        type: string
                      relationship:
                        type: object
                        properties:
                          offer:
                            type: object
                          events_count:
                            type: integer
      security:
        - API Key: []
components:
  securitySchemes:
    API Key:
      description: >
        The affiliate's API key generated from the Affiliate Portal. Uses the
        same X-Eflow-Api-Key header as the Network API, but the key belongs to
        the affiliate user rather than the network admin.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````