BetaSeries: messages
betaseries_messagesManage BetaSeries messages: send new messages, retrieve discussions and inbox, mark as read, or delete messages and discussions.
Instructions
Call the BetaSeries "messages" API. Pick an operation and pass its parameters in the params object.
Available operations:
delete-messages-message [DELETE /messages/message]: Delete a message. Params: id? (ID of the message to delete — if it's the first in a discussion, the whole discussion is deleted)
get-messages-discussion [GET /messages/discussion]: Retrieve a discussion. Params: id? (ID of the first message of the discussion)
get-messages-inbox [GET /messages/inbox]: Retrieve the member's inbox. Params: page? (Page number, default 1)
post-messages-message [POST /messages/message]: Send a message. Params: to? (ID of the recipient member (mandatory if first message)), text? (Text of the message), title? (Title of the message (mandatory if first message)), id? (ID of the first message in the discussion (optional))
post-messages-read [POST /messages/read]: Mark a message as read. Params: id? (ID of the message to mark as read)
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 |