zalo_send_message
Zalo · macOS
Effect: send (strongest supported action). Status: gated.
Gated means the tool requires an installed app, a connected account, permission, or runtime availability. Check those requirements on the listed platform before using it.
macOS
Purpose
Sends a Zalo message to a conversation. WRITE operation with a preview gate: the first call (confirm=false) returns a preview WITHOUT sending; set confirm=true to actually send. `to` is a thread id from zalo_list_chats; set type="group" for a group.
Required inputs
to— Thread id (from zalo_list_chats).message— Text to send.
Permissions and confirmation
Explicit confirmation parameter: inspect the schema and tool description before any real call. The documentation example keeps confirm false. Obtain user authorization before performing the action.
- Use only the apps, accounts and resources authorized by the user on this platform. Consult this tool's platform-specific description for its connection and permission requirements; this catalog does not assert additional OAuth scopes or OS entitlements.
Full input schema — macOS
{
"properties": {
"confirm": {
"description": "Must be true to actually send. Without it, returns a preview.",
"type": "boolean"
},
"message": {
"description": "Text to send.",
"type": "string"
},
"to": {
"description": "Thread id (from zalo_list_chats).",
"type": "string"
},
"type": {
"description": "\"user\" (default) or \"group\".",
"type": "string"
}
},
"required": [
"to",
"message"
],
"type": "object"
}Documentation example
Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.
{
"confirm": false,
"message": "Can we review the launch checklist on Tuesday?",
"to": "demo-thread-001"
}