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

# Find Custom Payout & Revenues (Advanced)

Retrieve a paginated list of custom payout/revenue settings. Supports search filters, sorting, and pagination to help you find and browse custom payout and revenue configurations programmatically.


## OpenAPI

````yaml openapi/custom-payout-revenue.yaml post /networks/custom/payoutrevenuetable
openapi: 3.0.3
info:
  title: Everflow Network API - Custom Payout/Revenue
  description: >
    Endpoints for managing custom payout and revenue settings in the Everflow
    network. Custom payout/revenue settings let you create partner-specific
    payout or revenue rules that override the offer's base rates — if multiple
    custom settings exist, Everflow applies the most specific one. For an
    overview, see the [Custom Settings
    guide](https://helpdesk.everflow.io/customer/overview-of-custom-settings).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Custom Payout/Revenue
paths:
  /networks/custom/payoutrevenuetable:
    post:
      tags:
        - Custom Payout/Revenue
      summary: Find Custom Payout & Revenues (Advanced)
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            default: 1
          description: Page number (1-based).
        - in: query
          name: page_size
          schema:
            type: integer
            default: 50
          description: Number of results per page.
        - in: query
          name: relationship
          schema:
            type: string
            enum:
              - offer
              - affiliates
              - limited_affiliates
              - payout_revenue_event_name
              - offer_urls
              - all
          description: >
            Include related data. Use `offer` for offer details, `affiliates`
            for full affiliate list, `limited_affiliates` for up to 5
            affiliates, `payout_revenue_event_name` for the base event name,
            `offer_urls` for associated offer URLs, or `all` for everything.
            Repeat the parameter for multiple values.
        - in: query
          name: order_field
          schema:
            type: string
            enum:
              - id
              - name
              - relationship.offer.name
              - time_created
              - time_saved
          description: Field to order results by.
        - in: query
          name: order_direction
          schema:
            type: string
            enum:
              - asc
              - desc
          description: Sort direction.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                search_terms:
                  type: array
                  description: Text search filters.
                  items:
                    type: object
                    properties:
                      search_type:
                        type: string
                        enum:
                          - name
                          - offer
                          - affiliate
                        description: >
                          The field to search on. `name` searches by setting ID
                          or name, `offer` searches by offer ID or name,
                          `affiliate` searches by affiliate ID or name.
                      value:
                        type: string
                        description: The search value.
                filters:
                  type: object
                  description: Structured filters to narrow results.
                  properties:
                    custom_payout_revenue_status:
                      type: string
                      enum:
                        - active
                        - inactive
                      description: Filter by setting status.
                    network_offer_ids:
                      type: array
                      items:
                        type: integer
                      description: Filter by offer IDs.
                    network_affiliate_ids:
                      type: array
                      items:
                        type: integer
                      description: Filter by affiliate IDs.
            example:
              search_terms: []
              filters: {}
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  custom_payout_revenue_settings:
                    type: array
                    items:
                      type: object
                      properties:
                        network_custom_payout_revenue_setting_id:
                          type: integer
                        network_id:
                          type: integer
                        network_offer_id:
                          type: integer
                        network_offer_payout_revenue_id:
                          type: integer
                        name:
                          type: string
                        custom_setting_status:
                          type: string
                        is_apply_all_affiliates:
                          type: boolean
                        is_custom_payout_enabled:
                          type: boolean
                        payout_type:
                          type: string
                        payout_amount:
                          type: number
                          format: double
                        payout_percentage:
                          type: number
                        is_custom_revenue_enabled:
                          type: boolean
                        revenue_type:
                          type: string
                        revenue_amount:
                          type: number
                          format: double
                        revenue_percentage:
                          type: number
                        is_postback_disabled:
                          type: boolean
                        description:
                          type: string
                        public_description:
                          type: string
                        date_valid_from:
                          type: string
                        date_valid_to:
                          type: string
                        is_apply_specific_offer_urls:
                          type: boolean
                        network_affiliate_ids:
                          type: array
                          nullable: true
                          items:
                            type: integer
                        network_offer_url_ids:
                          type: array
                          nullable: true
                          items:
                            type: integer
                        time_created:
                          type: integer
                          example: 1734455015
                        time_saved:
                          type: integer
                          example: 1734455015
                        relationship:
                          type: object
                          properties:
                            affiliates:
                              type: object
                              description: >
                                Associated affiliates. Included with
                                `relationship=affiliates`,
                                `relationship=limited_affiliates`, or
                                `relationship=all`. The `limited_affiliates`
                                variant returns up to 5 entries.
                              properties:
                                total:
                                  type: integer
                                  description: Total number of associated affiliates.
                                entries:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      network_affiliate_id:
                                        type: integer
                                      network_id:
                                        type: integer
                                      name:
                                        type: string
                                      account_status:
                                        type: string
                            offer:
                              type: object
                              description: Associated offer details.
                              properties:
                                network_offer_id:
                                  type: integer
                                network_id:
                                  type: integer
                                network_advertiser_id:
                                  type: integer
                                network_offer_group_id:
                                  type: integer
                                name:
                                  type: string
                                offer_status:
                                  type: string
                                network_tracking_domain_id:
                                  type: integer
                                visibility:
                                  type: string
                                currency_id:
                                  type: string
                            payout_revenue_event_name:
                              type: string
                              description: >-
                                The name of the base payout/revenue event (e.g.
                                `Base`, `Base Conversion`).
                            offer_urls:
                              type: array
                              description: >-
                                Associated offer URLs (when
                                `is_apply_specific_offer_urls` is `true`).
                              items:
                                type: object
                                properties:
                                  network_offer_url_id:
                                    type: integer
                                  network_id:
                                    type: integer
                                  network_offer_id:
                                    type: integer
                                  name:
                                    type: string
                  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

````