> ## 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 Creative Bulk Edit

Apply bulk edits to multiple creatives at once. Specify the creative IDs to modify and an array of field modifications. Patchable fields include name, is\_private, and creative\_status.


## OpenAPI

````yaml openapi/creatives.yaml patch /networks/patch/offers/creative/apply
openapi: 3.0.3
info:
  title: Everflow Network API - Creatives
  description: >
    Endpoints for managing creatives in the Everflow network. For more on
    creative types, see the [Creatives
    guide](https://helpdesk.everflow.io/customer/simple-creatives-images-links-videos-others).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Creatives
paths:
  /networks/patch/offers/creative/apply:
    patch:
      tags:
        - Creatives
      summary: Bulk Edit Creatives
      requestBody:
        required: true
        content:
          application/json:
            example:
              network_offer_creative_ids:
                - 10
                - 11
                - 12
              fields:
                - field_type: creative_status
                  field_value: paused
                  operator: overwrite
            schema:
              type: object
              required:
                - network_offer_creative_ids
                - fields
              properties:
                network_offer_creative_ids:
                  type: array
                  items:
                    type: integer
                  description: Array of creative IDs to modify.
                fields:
                  type: array
                  description: Array of field modifications to apply.
                  items:
                    type: object
                    required:
                      - field_type
                      - field_value
                      - operator
                    properties:
                      field_type:
                        type: string
                        enum:
                          - name
                          - is_private
                          - creative_status
                        description: The field to modify.
                      field_value:
                        description: The value to set (type varies by field).
                      operator:
                        type: string
                        enum:
                          - overwrite
                        description: >-
                          The operation to perform (always overwrite for
                          creatives).
      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

````