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

# Update Channel

Update an existing channel. This is a full object replacement; all fields must be provided in the request body.


## OpenAPI

````yaml openapi/channels.yaml put /networks/channels/{channelId}
openapi: 3.0.3
info:
  title: Everflow Network API - Channels
  description: >
    Endpoints for managing channels in the Everflow network. Channels identify
    and group different types of traffic sources at the partner level — for
    example Social Media, Search, Email, or Display. They are essential for
    media buyers to track and optimize where traffic originates.
  version: 1.0.0
servers:
  - url: https://api.eflow.team/v1
security: []
tags:
  - name: Channels
paths:
  /networks/channels/{channelId}:
    put:
      tags:
        - Channels
      summary: Update Channel
      parameters:
        - in: path
          name: channelId
          required: true
          schema:
            type: integer
          description: The ID of the channel to update.
      requestBody:
        required: true
        content:
          application/json:
            example:
              name: TestChannel
              status: inactive
            schema:
              type: object
              required:
                - name
                - status
              properties:
                name:
                  type: string
                  description: Name of the channel.
                status:
                  type: string
                  enum:
                    - active
                    - inactive
                  description: Status of the channel.
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Channel'
              example:
                network_channel_id: 1
                network_id: 1
                name: TestChannel
                status: inactive
                time_created: 1774712750
                time_saved: 1774712800
                relationship: {}
      security:
        - API Key: []
components:
  schemas:
    Channel:
      type: object
      description: A traffic channel in the network.
      properties:
        network_channel_id:
          type: integer
          description: Unique channel ID.
        network_id:
          type: integer
          description: Network ID.
        name:
          type: string
          description: Channel name.
        status:
          type: string
          enum:
            - active
            - inactive
          description: Channel 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
          description: Related data.
  securitySchemes:
    API Key:
      description: The Everflow API key generated from the Control Center > Security.
      in: header
      name: X-Eflow-Api-Key
      type: apiKey

````