Forward a message to another user or conversation
Forward an existing message to another user or conversation.
Requires agent authentication via API key (MUTIRO_AGENT_API_KEY environment variable).
You can forward to:
- Username (e.g., "alice") - forwards to direct conversation with that user
- Conversation ID (using --conversation-id flag) - forwards to existing conversation
Examples:
Forward a message to alice
mutiro agent message forward msg_123 alice
Forward with a comment
mutiro agent message forward msg_123 alice --comment "Thought you'd find this interesting"
Forward to a group conversation
mutiro agent message forward msg_123 --conversation-id conv_456
mutiro agent message forward <message-id> <your-username> [flags]
Forward a message to alice
Forward with a comment
Forward to a group conversation
| Flag | Type | Description |
|---|---|---|
| --comment | string | Optional comment to prepend |
| --conversation-id | string | Forward to conversation ID instead of username |
| -h, --help | bool | help for forward |
| --json | bool | Output result as JSON |
| Flag | Type | Description |
|---|---|---|
| --api-endpoint | string | API endpoint (default: from config or api.mutiro.com:443) |
| --api-key | string | API key for agent authentication |
| --config | string | config file (default is ./.mutiro.yaml in current directory) |
| --debug | bool | debug mode |
| --insecure | bool | Disable TLS connection |
| --username | string | Agent username |
| -v, --verbose | bool | verbose output |
| --view-as | string | Read as one of your agents, authenticated as yourself (read and search only) |