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

# Apply Offer URL Bulk Edit

Apply bulk edits to multiple offer URLs at once. Specify the offer ID, the list of offer URL IDs to modify, and an array of field modifications with their operators (overwrite, append, delete, clear).


## OpenAPI

````yaml openapi/offer-urls.yaml patch /networks/patch/offerurls/apply
openapi: 3.0.3
info:
  title: Everflow Network API - Offer URLs
  description: >
    Endpoints for managing offer URLs in the Everflow network. Offer URLs let
    you add additional landing page destinations inside an offer — use them for
    A/B testing, seasonal pages, or directing traffic to specific product pages
    while maintaining tracking consistency. For details, see the [Offer URLs
    guide](https://helpdesk.everflow.io/customer/how-to-use-offer-urls).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Offer URLs
paths:
  /networks/patch/offerurls/apply:
    patch:
      tags:
        - Offer URLs
      summary: Apply Offer URL Bulk Edit
      requestBody:
        required: true
        content:
          application/json:
            example:
              network_offer_id: 1
              network_offer_url_ids:
                - 10
                - 11
                - 12
              fields:
                - field_type: url_status
                  field_value: paused
                  operator: overwrite
            schema:
              type: object
              required:
                - network_offer_id
                - network_offer_url_ids
                - fields
              properties:
                network_offer_id:
                  type: integer
                  description: The ID of the offer to which the offer URLs are associated.
                network_offer_url_ids:
                  type: array
                  items:
                    type: integer
                  description: The unique IDs of the offer URLs that will be modified.
                fields:
                  type: array
                  description: A list of the fields that will be modified.
                  items:
                    type: object
                    required:
                      - field_type
                      - field_value
                      - operator
                    properties:
                      field_type:
                        type: string
                        enum:
                          - url_status
                          - is_apply_specific_affiliates
                          - network_affiliate_ids
                          - destination_url_replace
                        description: >
                          The name of the field that will be modified. For
                          destination_url_replace, the field_value should be an
                          object with find and replace strings.
                      field_value:
                        description: >-
                          The new value of the field (type varies by
                          field_type).
                      operator:
                        type: string
                        enum:
                          - overwrite
                          - append
                          - delete
                          - clear
                        description: >
                          How the field will be modified. Not all options are
                          possible for every field — append, delete, and clear
                          only apply for fields that contain multiple values
                          like network_affiliate_ids.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
                    description: Whether the bulk edit was successful.
      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

````