> ## 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 Creative Status

Bulk update the status of multiple custom creative settings at once. Provide a list of setting IDs and the new status.


## OpenAPI

````yaml openapi/custom-creatives-settings.yaml patch /networks/custom/creative
openapi: 3.0.3
info:
  title: Everflow Network API - Custom Creative Settings
  description: >
    Endpoints for managing custom creative settings in the Everflow network.
    Custom creatives allow you to upload partner-specific creative assets that
    are only visible and usable by the selected partners, enabling targeted
    promotional materials for individual affiliates.
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Custom Creative Settings
paths:
  /networks/custom/creative:
    patch:
      tags:
        - Custom Creative Settings
      summary: Bulk Update Custom Creative Status
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BulkStatusUpdateRequest'
            example:
              custom_creative_setting_ids:
                - 1
                - 2
                - 3
              status: inactive
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  result:
                    type: boolean
      security:
        - API Key: []
components:
  schemas:
    BulkStatusUpdateRequest:
      type: object
      required:
        - custom_creative_setting_ids
        - status
      properties:
        custom_creative_setting_ids:
          type: array
          items:
            type: integer
          description: List of custom creative setting IDs to update.
        status:
          type: string
          enum:
            - active
            - inactive
          description: New status for all specified settings.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````