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

# Update On-Hold Conversion Status

Approve or reject on-hold conversions. Provide an array of conversion IDs and the target status to update them in bulk.


## OpenAPI

````yaml openapi/reporting-onhold.yaml patch /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:
    patch:
      tags:
        - Conversion Updates
      summary: Update On-Hold Conversion Status
      requestBody:
        required: true
        content:
          application/json:
            example:
              on_hold_conversion_ids:
                - baab7e25bba046e6b080c799729c5cba
                - a91a421038ab46b694547f4db636db80
              status: approved
            schema:
              type: object
              required:
                - on_hold_conversion_ids
                - status
              properties:
                on_hold_conversion_ids:
                  type: array
                  items:
                    type: string
                  description: Array of on-hold conversion IDs to update.
                status:
                  type: string
                  enum:
                    - approved
                    - rejected
                  description: Target status for the conversions.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
                    description: Whether the update was successful.
      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

````