Create and Edit a Channel
Learn how to create a new channel and make edits to it using the Vimeo API.
We'll cover the following...
In this chapter, we’ll focus on some of the important operations for Vimeo channels. Channels are used to arrange videos by grouping them based on a theme or some other criteria. We can add personal and publicly available videos to our channel. Since we are using Vimeo’s basic plan for this course, we can create only one channel.
Let’s look at how to create a new Vimeo channel and make edits to it. We’ll use the following endpoints to perform these tasks.
We’ll use the
{base_url}/channels
endpoint to create a new channel.We’ll use the
{base_url}/channels/{newChannelID}
endpoint to edit a channel.
Create a new channel
In this section, we’ll use the {base_url}/channels
endpoint to create a ...