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

# Find Custom Creative Settings (Advanced)

Search, filter, and paginate custom creative settings. Supports filtering by offer IDs, affiliate IDs, and setting status, plus text search on name, offer, and affiliate. Pagination and ordering are controlled via query parameters. Set `relationship=all` to include associated affiliates, offers, and creative details.


## OpenAPI

````yaml openapi/custom-creatives-settings.yaml post /networks/custom/creativetable
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/creativetable:
    post:
      tags:
        - Custom Creative Settings
      summary: Find Custom Creative Settings (Advanced)
      parameters:
        - in: query
          name: page
          schema:
            type: integer
            default: 1
          description: Page number (1-based).
        - in: query
          name: page_size
          schema:
            type: integer
            default: 50
          description: Number of results per page.
        - in: query
          name: order_field
          schema:
            type: string
            enum:
              - name
              - time_created
              - time_saved
              - id
          description: Field to order results by.
        - in: query
          name: order_direction
          schema:
            type: string
            enum:
              - asc
              - desc
          description: Sort direction.
        - in: query
          name: relationship
          schema:
            type: string
            enum:
              - all
          description: >-
            Set to `all` to include relationship data (affiliates, offers,
            creative).
      requestBody:
        required: true
        content:
          application/json:
            example:
              filters:
                custom_setting_status: active
              search_terms:
                - search_type: name
                  value: holiday
            schema:
              type: object
              properties:
                filters:
                  type: object
                  properties:
                    network_offer_ids:
                      type: array
                      items:
                        type: integer
                      description: Filter by offer IDs.
                    network_affiliate_ids:
                      type: array
                      items:
                        type: integer
                      description: Filter by affiliate IDs.
                    custom_setting_status:
                      type: string
                      enum:
                        - active
                        - inactive
                      description: Filter by setting status.
                search_terms:
                  type: array
                  description: Array of search filters to apply.
                  items:
                    type: object
                    required:
                      - search_type
                      - value
                    properties:
                      search_type:
                        type: string
                        enum:
                          - name
                          - offer
                          - affiliate
                        description: The field to search on.
                      value:
                        type: string
                        description: The search value.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  custom_creative_settings:
                    type: array
                    items:
                      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_id:
                          type: integer
                          description: ID of the associated offer creative.
                        network_offer_ids:
                          type: array
                          items:
                            type: integer
                          description: List of associated offer IDs.
                        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.
                        optimized_thumbnail_url:
                          type: string
                          description: URL to the optimized thumbnail.
                        relationship:
                          type: object
                          description: Included when `relationship=all` is passed.
                          properties:
                            affiliates:
                              type: array
                              items:
                                type: object
                              description: Associated affiliate details.
                            offers:
                              type: array
                              items:
                                type: object
                              description: Associated offer details.
                            creative:
                              type: object
                              description: Associated creative details.
                  paging:
                    type: object
                    properties:
                      page:
                        type: integer
                      page_size:
                        type: integer
                      total_count:
                        type: integer
      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

````