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

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


## OpenAPI

````yaml openapi/custom-caps.yaml patch /networks/custom/caps
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:
    patch:
      tags:
        - Custom Caps
      summary: Bulk Update Custom Caps
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkUpdateRequest'
            example:
              network_custom_cap_setting_ids:
                - 1
                - 2
                - 3
              fields:
                - field_type: daily_conversion_cap
                  field_value: 150
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
      security:
        - API Key: []
components:
  schemas:
    BulkUpdateRequest:
      type: object
      required:
        - network_custom_cap_setting_ids
        - fields
      properties:
        network_custom_cap_setting_ids:
          type: array
          items:
            type: integer
          description: List of custom cap setting IDs to update.
        fields:
          type: array
          items:
            type: object
            properties:
              field_type:
                type: string
                enum:
                  - daily_conversion_cap
                  - weekly_conversion_cap
                  - monthly_conversion_cap
                  - global_conversion_cap
                  - daily_payout_cap
                  - weekly_payout_cap
                  - monthly_payout_cap
                  - global_payout_cap
                  - daily_click_cap
                  - weekly_click_cap
                  - monthly_click_cap
                  - global_click_cap
                  - daily_revenue_cap
                  - weekly_revenue_cap
                  - monthly_revenue_cap
                  - global_revenue_cap
                description: The cap field to update.
              field_value:
                description: The new cap value.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````