Manage Channel Tags
Learn how to perform different operations to manage tags of a channel using the Vimeo API.
Overview
In this lesson, we'll perform the below two operations related to the tags in a channel:
- Add a tag to a channel
- Get all the tags of a channel
These tasks are achieved by the following endpoints:
- We use the
{base_url}/channels/{channel_id}/tags/{tag_word}
endpoint to add a specific tag to a channel. - We use the
{base_url}/channels/{channel_id}/tags
endpoint to get all tags of a channel.
Add a specific tag to a channel
In this section, we’ll see how we can add a specific tag to a channel using the Vimeo API. We'll make multiple calls to add multiple tags to our channel, specified by the channel_id
.
Request parameters
This API call takes two required path parameters—channel_id
and tag_word
. For the code snippet shown in the widget below, we'll use the saved channel_id
for the channel we created earlier. Let's see the functionality in the code widget below:
Get hands-on with 1400+ tech skills courses.