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

# Delete Custom Payout/Revenue

Delete a custom payout/revenue setting by its ID. This will revert the affiliate to using the default offer payout and revenue.


## OpenAPI

````yaml openapi/custom-payout-revenue.yaml delete /networks/custom/payoutrevenue/{settingId}
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/{settingId}:
    delete:
      tags:
        - Custom Payout/Revenue
      summary: Delete Custom Payout/Revenue
      parameters:
        - in: path
          name: settingId
          required: true
          schema:
            type: integer
          description: The custom payout/revenue setting identifier.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
      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

````