Loading...
mutiro user message

Message operations (send, read, search, reply)

Synopsis

Manage messages as a user.

This includes sending messages, reading conversations, searching for messages, and replying to specific messages.

All message commands require authentication via JWT token (login first with 'mutiro auth login').

Available subcommands: send - Send a message to a user or conversation read - Read messages from a conversation search - Search for messages with filters reply - Reply to a specific message transcribe - Transcribe audio from a message wait - Wait for a specific message (for testing) list - List messages in a conversation

Examples:

Send a message to alice

mutiro user message send alice "Hello!"

Send a reply to a message

mutiro user message send alice "My response" --reply-to=msg_123

Read messages from a conversation

mutiro user message read alice --limit=20

Search for messages

mutiro user message search --reply-to=msg_123 mutiro user message search --from=alice --contains="hello"

Reply to a message

mutiro user message reply msg_123 "Thanks for your message!"

Wait for a response (for testing)

mutiro user message wait conv_123 "response text" --timeout=30

Usage -h, --help help for message
Examples

Send a message to alice

mutiro user message send alice "Hello!"

Send a reply to a message

mutiro user message send alice "My response" --reply-to=msg_123

Read messages from a conversation

mutiro user message read alice --limit=20

Search for messages

mutiro user message search --reply-to=msg_123 mutiro user message search --from=alice --contains="hello"

Reply to a message

mutiro user message reply msg_123 "Thanks for your message!"

Wait for a response (for testing)

mutiro user message wait conv_123 "response text" --timeout=30
Options
Flag Type Description
-h, --help bool help for message
Global Options
Flag Type Description
--config string config file (default is ./.mutiro.yaml in current directory)
--debug bool debug mode
-v, --verbose bool verbose output
Subcommands
See Also
mutiro user mutiro user message forward mutiro user message read mutiro user message reply mutiro user message search mutiro user message send mutiro user message send-voice mutiro user message transcribe