Video API, gRPC: ChannelService.Get
Written by
Updated at December 17, 2024
Returns the specific channel.
gRPC request
rpc Get (GetChannelRequest) returns (Channel)
GetChannelRequest
{
"channel_id": "string"
}
Field |
Description |
channel_id |
string Required field. ID of the channel. |
Channel
{
"id": "string",
"organization_id": "string",
"title": "string",
"description": "string",
"created_at": "google.protobuf.Timestamp",
"updated_at": "google.protobuf.Timestamp",
"labels": "map<string, string>"
}
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 |
Time when channel was created. |
updated_at |
Time of last channel update. |
labels |
object (map<string, string>) Custom labels as |