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

# List Custom Creative Settings

Retrieve all custom creative settings for the network. Returns a paginated list of custom creative configurations that assign specific creatives to affiliates. Filterable by custom\_setting\_status, time\_created, and time\_saved.


## OpenAPI

````yaml openapi/custom-creatives-settings.yaml get /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:
    get:
      tags:
        - Custom Creative Settings
      summary: List Custom Creative Settings
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  custom_creative_settings:
                    type: array
                    items:
                      $ref: '#/components/schemas/CustomCreativeSetting'
      security:
        - API Key: []
components:
  schemas:
    CustomCreativeSetting:
      type: object
      properties:
        network_custom_creative_setting_id:
          type: integer
          description: Unique custom creative setting ID.
        network_id:
          type: integer
          description: Network ID.
        network_offer_creative_ids:
          type: array
          items:
            type: integer
          description: List of offer creative IDs assigned.
        network_affiliate_ids:
          type: array
          items:
            type: integer
          description: List of affiliate IDs this setting applies to.
        name:
          type: string
          description: Custom creative setting name.
        custom_setting_status:
          type: string
          enum:
            - active
            - inactive
          description: Setting status.
        time_created:
          type: integer
          example: 1734455015
          description: Unix timestamp of creation.
        time_saved:
          type: integer
          example: 1734455015
          description: Unix timestamp of last update.
        relationship:
          type: object
          properties:
            affiliates:
              type: array
              items:
                type: object
              description: Associated affiliate details.
            creative:
              type: object
              description: Associated creative details.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````