BetaSeries: friends
betaseries_friendsManage social connections on BetaSeries: list friends and requests, add or remove friends, and block or unblock users.
Instructions
Call the BetaSeries "friends" API. Pick an operation and pass its parameters in the params object.
Available operations:
delete-friends-block [DELETE /friends/block]: Unblocks a user. Params: id? (Member ID to unblock)
delete-friends-friend [DELETE /friends/friend]: Removes a friend. Params: id? (Member ID to remove)
get-friends-list [GET /friends/list]: Retrieves friends List. Params: id? (Member ID, optional, if not specified uses the identified member. If specified, blocked=false.), blocked? (If specified, returns the list of blocked people), summary? (Returns the last action of friends (Default false)), limit? (Limit on the number of friends to display (optional, default all friends are returned)), page? (Page number, default 1)
get-friends-requests [GET /friends/requests]: Retrieves sent requests. Params: received? (If specified, returns the list of received requests)
post-friends-block [POST /friends/block]: Blocks a user. Params: id? (Member ID to block)
post-friends-friend [POST /friends/friend]: Adds a friend. Params: id? (Member ID to add as a friend)
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 |