Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Cloud Video
    • Overview
    • Control
    • Troubleshooting
  • Access management
  • Pricing policy
    • Authentication with the API
    • Getting started with the API
      • Overview
        • Overview
        • Get
        • List
        • Create
        • Update
        • Delete
        • BatchDelete
        • ListAccessBindings
        • SetAccessBindings
        • UpdateAccessBindings
  • Audit Trails events
  • Release notes

In this article:

  • gRPC request
  • ListChannelsRequest
  • ListChannelsResponse
  • Channel
  • ChannelSettings
  • AdvertisementSettings
  • YandexDirect
  • RefererVerificationSettings
  1. API reference
  2. gRPC
  3. Channel
  4. List

Video API, gRPC: ChannelService.List

Written by
Yandex Cloud
Updated at April 24, 2025
  • gRPC request
  • ListChannelsRequest
  • ListChannelsResponse
  • Channel
  • ChannelSettings
  • AdvertisementSettings
  • YandexDirect
  • RefererVerificationSettings

List channels for organization.

gRPC requestgRPC request

rpc List (ListChannelsRequest) returns (ListChannelsResponse)

ListChannelsRequestListChannelsRequest

{
  "organization_id": "string",
  "page_size": "int64",
  "page_token": "string",
  "order_by": "string",
  "filter": "string"
}

Field

Description

organization_id

string

Required field. ID of the organization.

page_size

int64

The maximum number of the results per page to return.
Default value: 100.

page_token

string

Page token for getting the next page of the result.

order_by

string

By which column the listing should be ordered and in which direction,
format is " " (e.g. "createdAt desc").
Default: "id asc".
Possible fields: ["id", "title", "createdAt", "updatedAt"].
Both snake_case and camelCase are supported for fields.

filter

string

Filter expression that filters resources listed in the response.
Expressions are composed of terms connected by logic operators.
If value contains spaces or quotes,
it should be in quotes (' or ") with the inner quotes being backslash escaped.
Supported logical operators: ["AND", "OR"].
Supported string match operators: ["=", "!=", ":"].
Operator ":" stands for substring matching.
Filter expressions may also contain parentheses to group logical operands.
Example: key1='value' AND (key2!='\'value\'' OR key2:"\"value\"")
Supported fields: ["id", "title"].
Both snake_case and camelCase are supported for fields.

ListChannelsResponseListChannelsResponse

{
  "channels": [
    {
      "id": "string",
      "organization_id": "string",
      "title": "string",
      "description": "string",
      "created_at": "google.protobuf.Timestamp",
      "updated_at": "google.protobuf.Timestamp",
      "labels": "map<string, string>",
      "settings": {
        "advertisement": {
          // Includes only one of the fields `yandex_direct`
          "yandex_direct": {
            "enable": "bool",
            "page_id": "int64",
            "category": "int64"
          }
          // end of the list of possible fields
        },
        "referer_verification": {
          "enable": "bool",
          "allowed_domains": [
            "string"
          ]
        }
      }
    }
  ],
  "next_page_token": "string"
}

Field

Description

channels[]

Channel

List of channels for specific organization.

next_page_token

string

Token for getting the next page.

ChannelChannel

Root entity for content separation.

Field

Description

id

string

ID of the channel.

organization_id

string

ID of the organization where channel should be created.

title

string

Channel title.

description

string

Channel description.

created_at

google.protobuf.Timestamp

Time when channel was created.

updated_at

google.protobuf.Timestamp

Time of last channel update.

labels

object (map<string, string>)

Custom labels as key:value pairs. Maximum 64 per resource.

settings

ChannelSettings

Channel settings.

ChannelSettingsChannelSettings

Channel settings.

Field

Description

advertisement

AdvertisementSettings

Advertisement settings.

referer_verification

RefererVerificationSettings

Referer verification settings

AdvertisementSettingsAdvertisementSettings

Advertisement settings.

Field

Description

yandex_direct

YandexDirect

Includes only one of the fields yandex_direct.

Advertisement provider.

YandexDirectYandexDirect

YandexDirect provider settings.

Field

Description

enable

bool

Enable Partner Ad for Live and VOD content.

page_id

int64

Advertisement page ID.

category

int64

Advertisement category.

RefererVerificationSettingsRefererVerificationSettings

Referer verification settings.

Field

Description

enable

bool

Enable verification

allowed_domains[]

string

List of available domains

Was the article helpful?

Previous
Get
Next
Create
Yandex project
© 2025 Yandex.Cloud LLC