react_to_message
Like or unlike a GroupMe message on the authenticated user's behalf using its conversation and message IDs. Idempotent: repeats leave the message in the requested state.
Instructions
Like a GroupMe message, or remove your like from one.
Use this to react to a specific message on the authenticated user's
behalf — acknowledging something without posting a reply.
Both actions are idempotent: liking an already-liked message (or
unliking one you never liked) leaves it in the requested state. Ids come
from read_messages with response_format="detailed": use its
conversation_id (a group id, or a composite direct-chat id like
"123+456") and message id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ``"like"`` to like it, ``"unlike"`` to remove your like. | |
| message_id | Yes | The message to react to. | |
| conversation_id | Yes | The conversation holding the message. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| message_id | Yes | ||
| confirmation | Yes | ||
| conversation_id | Yes |