Manage Channel Tags
Learn how to perform different operations to manage tags of a channel using the Vimeo API.
We'll cover the following...
In this lesson, we'll perform the below operations related to the tags in a channel:
Add a tag to a channel
Get all the tags of a channel
Check and remove a tag from a channel
These tasks are achieved by the following endpoints:
We'll use the
{base_url}/channels/{channelID}/tags/{tagWord}endpoint to add, check, and delete a specific tag to a channel.We'll use the
{base_url}/channels/{channelID}/tagsendpoint 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 channelID.
This API call takes two required path parameters shown in the table below:
Request Parameters
Parameter Name | Type | Category | Description |
| Integer | Required | This field shows the ID of the channel to which we want to add a tag. |
| String | Required | This field shows the specific tag to add. |
For the code snippet shown in the widget below, we'll use the saved channelID for the channel we created earlier. Let's see the ...