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

Delete a custom cap setting by its ID. This will revert the affiliate/offer combination to using the default cap settings.


## OpenAPI

````yaml openapi/custom-caps.yaml delete /networks/custom/caps/{settingId}
openapi: 3.0.3
info:
  title: Everflow Network API - Custom Caps
  description: >
    Endpoints for managing custom cap settings in the Everflow network. Custom
    caps let you set conversion, click, or impression limits at the partner or
    offer level — if both an offer and a partner have caps, Everflow stops
    conversions once either limit is reached. For setup, see the [Caps
    Management guide](https://helpdesk.everflow.io/customer/how-to-manage-caps).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Custom Caps
paths:
  /networks/custom/caps/{settingId}:
    delete:
      tags:
        - Custom Caps
      summary: Delete Custom Cap
      parameters:
        - in: path
          name: settingId
          required: true
          schema:
            type: integer
          description: The custom cap 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

````