User Operations on the Category
Explore user operations on Vimeo categories by learning how to check if a user follows a category, follow or unfollow categories, and retrieve all categories followed. Understand how to use specific Vimeo API endpoints and HTTP methods to manage category subscriptions effectively.
Overview
In this lesson, we'll learn about a few user-related operations on a category:
- Check if a user follows a specific category
- Allow a user to follow a specific category
- Allow a user to unfollow a specific category
- Get all the categories that a user follows
We’ll use the following endpoints to perform these operations:
- We’ll use the
{base_url}/users/{USER_ID}/categories/{category_name}endpoint to check, follow, and unfollow a category. - We’ll use the
{base_url}/users/{USER_ID}/categoriesendpoint to get all categories followed by a user.