BetaSeries: comments
betaseries_commentsManage BetaSeries comments: retrieve, post, edit, delete, reply, vote, and handle email notification subscriptions for shows and movies.
Instructions
Call the BetaSeries "comments" API. Pick an operation and pass its parameters in the params object.
Available operations:
delete-comments-comment [DELETE /comments/comment]: Delete a comment from the identified user. Params: id (ID of the comment)
delete-comments-subscription [DELETE /comments/subscription]: Unsubscribe the member from email notifications for the given item. Params: type? (Type of item: episode|show|member|movie), id? (ID of the item in question)
delete-comments-thumb [DELETE /comments/thumb]: Remove the user's vote for the given comment. Params: id (ID of the comment)
get-comments-comment [GET /comments/comment]: Retrieve a given comment. Params: id (ID of the comment)
get-comments-comments [GET /comments/comments]: Get comments. Params: type? (Element type: episode|show|member|movie|poll|article), id? (ID of the element in question), nbpp (Number of comments per page), since_id? (ID of the last comment received (Optional)), order? (Chronological return order, desc or asc (Default asc)), replies? (Include replies to comments (1 or 0, default 1))
get-comments-replies [GET /comments/replies]: Retrieve the replies of a given comment. Params: id (ID of the comment), order? (Chronological return order, desc or asc (Default asc))
get-comments-status [GET /comments/status]: Retrieve the status of comments on the given item (closed or open). Params: type? (Type of item: episode|show|member|movie), id? (ID of the item in question)
post-comments-comment [POST /comments/comment]: Create or edit a comment for the specified item. Params: type (Type of item: episode|show|member|movie|event|poll|article (Mandatory for creation, or reference)), id (ID of the item in question (Mandatory for creation, or reference)), reference (Reference ID of the item in question (Mandatory for creation, or type + id)), in_reply_to? (If a reply, inner_id of the corresponding comment (Optional for creation)), text? (Text of the comment), edit_id? (ID of the comment to edit (Mandatory for editing))
post-comments-comment-event [POST /comments/comment_event]: Create a comment for an event. Params: type? (Type of the event: film_add|markas.... (Optional if id provided)), element_id? (ID of the element involved in the event (Optional if id provided)), id? (ID of the event to comment on (Optional if type + element_id provided)), text? (Text of the comment)
post-comments-subscription [POST /comments/subscription]: Subscribe the member to email notifications for the given item. Params: type? (Type of item: episode|show|member|movie), id? (ID of the item in question)
post-comments-thumb [POST /comments/thumb]: Add a vote for the user for the given comment. Params: id (ID of the comment), type (Type of the vote (-1 for a downvote, 1 for an upvote)), switch? (Whether the user switches their existing vote (default false))
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 |