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

# Bulk Update Custom Payout/Revenue

Bulk update multiple custom payout/revenue settings at once. Provide a list of setting IDs and the fields to update.


## OpenAPI

````yaml openapi/custom-payout-revenue.yaml patch /networks/custom/payoutrevenue
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/payoutrevenue:
    patch:
      tags:
        - Custom Payout/Revenue
      summary: Bulk Update Custom Payout/Revenue
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkUpdateRequest'
            example:
              network_custom_payout_revenue_setting_ids:
                - 1
                - 2
                - 3
              fields:
                - field_type: payout_amount
                  field_value: 7.5
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
      security:
        - API Key: []
components:
  schemas:
    BulkUpdateRequest:
      type: object
      required:
        - network_custom_payout_revenue_setting_ids
        - fields
      properties:
        network_custom_payout_revenue_setting_ids:
          type: array
          items:
            type: integer
          description: List of custom payout/revenue setting IDs to update.
        fields:
          type: array
          items:
            type: object
            properties:
              field_type:
                type: string
                enum:
                  - custom_setting_status
                  - date_valid_from
                  - date_valid_to
                  - description
                  - is_apply_all_affiliates
                  - is_custom_payout_enabled
                  - is_custom_revenue_enabled
                  - name
                  - network_affiliate_ids
                  - network_offer_id
                  - payout_amount
                  - payout_percentage
                  - payout_type
                  - revenue_amount
                  - revenue_percentage
                  - revenue_type
                  - is_postback_disabled
                  - variables
                  - ruleset_platforms
                  - ruleset_device_types
                  - ruleset_os_versions
                  - ruleset_browsers
                  - ruleset_languages
                  - ruleset_countries
                  - ruleset_regions
                  - ruleset_cities
                  - ruleset_dmas
                  - ruleset_mobile_carriers
                  - ruleset_isps
                  - ruleset_connection_types
                  - ruleset_ips
                  - ruleset_is_block_proxy
                description: >
                  The field to update. Note that `is_apply_all_affiliates` can
                  only be bulk-updated to `true`. Switching to specific
                  affiliates requires using the PUT endpoint instead, because
                  `is_apply_all_affiliates` and `network_affiliate_ids` cannot
                  be set atomically via bulk update.
              field_value:
                description: The new value for the field.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````