acknowledge_message
Mark a message as read using its ID and your current task ID, removing it from unread messages.
Instructions
Mark a message as read/acknowledged.
Use this after you've processed a message to remove it from your unread messages.
Args: message_id: The ID of the message to acknowledge. current_task_id: Your current task ID.
Returns: Result indicating whether acknowledgement succeeded.
Example: >>> acknowledge_message("msg_abc123", "task-a") AcknowledgeMessageResult(success=True, ...)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message_id | Yes | ||
| current_task_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| message | Yes | Human-readable status message | |
| success | Yes | Whether the acknowledgement succeeded | |
| message_id | No | The acknowledged message ID |