> ## 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 Conversion Payout & Revenue

Update payout and revenue for an approved conversion. Amounts must be absolute values, not percentages.


## OpenAPI

````yaml openapi/reporting-conversions.yaml put /networks/reporting/conversions/{conversionId}/payoutrevenue
openapi: 3.0.3
info:
  title: Everflow Network API - Conversion Reporting
  description: >
    Conversion reporting and management endpoints for the Everflow partner
    marketing platform. Search, retrieve, update, and create conversions. For
    more detail, see [Conversion
    Report](https://helpdesk.everflow.io/customer/conversion-report) in the Help
    Center.
  version: 1.0.0
servers:
  - description: Production Server
    url: https://api.eflow.team/v1
security: []
tags:
  - name: Reporting
    description: Conversion reporting and management endpoints.
paths:
  /networks/reporting/conversions/{conversionId}/payoutrevenue:
    put:
      tags:
        - Reporting
      summary: Update Conversion Payout and Revenue
      parameters:
        - in: path
          name: conversionId
          required: true
          schema:
            type: string
          description: The conversion ID to update.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              required:
                - payout
                - revenue
              properties:
                payout:
                  type: number
                  minimum: 0
                  description: Partner payout amount. Must be greater than or equal to 0.
                revenue:
                  type: number
                  minimum: 0
                  description: Revenue amount. Must be greater than or equal to 0.
                is_event:
                  type: boolean
                  description: >
                    Whether the conversion being updated is a post-conversion
                    event. Set to `true` when updating an event, `false` (or
                    omit) for a base conversion.
              type: object
            example:
              is_event: true
              payout: 10
              revenue: 0
      responses:
        '200':
          content:
            application/json:
              example:
                result: true
              schema:
                properties:
                  result:
                    type: boolean
                    description: Whether the operation was accepted.
                type: object
          description: ''
      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

````