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

# Set Offer Visibility

Update the visibility settings for a specific offer. This operation completely overwrites the existing visibility settings for the specified set type. Provide the list of affiliate IDs and the visibility type (visible or hidden).


## OpenAPI

````yaml openapi/offer-visibility.yaml put /networks/offers/{offerId}/visibility
openapi: 3.0.3
info:
  title: Everflow Network API - Offer Visibility
  description: >
    Endpoints for managing offer visibility settings in the Everflow network.
    Visibility settings control which partners can see and access an offer — use
    them to protect high-value offers, prevent fraud, and ensure the right
    partners promote the right campaigns. For setup, see the [Offer Visibility
    guide](https://helpdesk.everflow.io/customer/managing-offer-visibility-partner-access).
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Offer Visibility
paths:
  /networks/offers/{offerId}/visibility:
    put:
      tags:
        - Offer Visibility
      summary: Set Offer Visibility
      parameters:
        - in: path
          name: offerId
          required: true
          schema:
            type: integer
          description: The offer ID.
      requestBody:
        required: true
        content:
          application/json:
            example:
              network_affiliate_ids:
                - 7
                - 14
              set_type: visible
            schema:
              type: object
              required:
                - network_affiliate_ids
                - set_type
              properties:
                network_affiliate_ids:
                  type: array
                  items:
                    type: integer
                  description: >-
                    List of affiliate IDs whose visibility will be set to the
                    target `set_type`.
                set_type:
                  type: string
                  enum:
                    - visible
                    - hidden
                    - rejected
                  description: >-
                    The type of visibility to apply to the specified affiliates.
                    Values are `visible`, `hidden`, and `rejected`.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  network_id:
                    type: integer
                    description: Network ID.
                  network_offer_id:
                    type: integer
                    description: Offer ID.
                  network_affiliate_visible_ids:
                    type: array
                    items:
                      type: integer
                    description: Updated list of affiliate IDs with visible access.
                  network_affiliate_rejected_ids:
                    type: array
                    items:
                      type: integer
                    description: Updated list of affiliate IDs with rejected access.
                  network_affiliate_hidden_ids:
                    type: array
                    items:
                      type: integer
                    description: Updated list of affiliate IDs with hidden access.
      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

````