BetaSeries: collections
betaseries_collectionsManage TV show and movie collections on BetaSeries: create, update, delete, list, subscribe, and toggle notifications for collections.
Instructions
Call the BetaSeries "collections" API. Pick an operation and pass its parameters in the params object.
Available operations:
delete-collections-collection [DELETE /collections/collection]: Delete a collection from the identified user [Premium feature]. Params: id (ID of the collection)
delete-collections-subscribe [DELETE /collections/subscribe]: Delete the subscription for the identified user to a collection. Params: id (ID of the collection)
get-collections-collection [GET /collections/collection]: Display collection's data. Params: id (ID of the collection to retrieve.)
get-collections-list [GET /collections/list]: Display the list of all collections of the member. Params: user_id? (Member's ID (optional, default identified member))
get-collections-subscriptions [GET /collections/subscriptions]: Display the list of all collections subscribed by the member. Params: user_id? (Member's ID (optional, default identified member))
post-collections-collection [POST /collections/collection]: Create/Update a collection for the identified user [Premium feature]. Params: id? (ID of the collection to update (Mandatory for updating)), name? (Name of the collection (Mandatory for creation)), description? (Description of the collection (Optional)), private? (Indicates if the collection if private (Optional, possibles values : '1' (for private) or '0' (for public, default value when creation))), items? (List of shows/movies for the collection (Mandatory for creation, Optional for edition. Must be a JSON array with format : [{"type": "show", "id": 123, "note": "Note about series"}, {"type": "movie", "id": 456, "note": null}]))
post-collections-notifications [POST /collections/notifications]: Toggle the notifications of the subscription for the identified user to a collection. Params: id (ID of the collection)
post-collections-subscribe [POST /collections/subscribe]: Subscribe the identified user to a collection. Params: id (ID of the collection)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | No | Query parameters for the chosen operation, as string key/value pairs. See this tool's description for the accepted parameter names per operation. | |
| operation | Yes | Which operation to perform |