Feishu urgent message (buzz) notifications. Activate when user mentions urgent, buzz, remind, or escalation for messages.
Single tool feishu_urgent for sending urgent (buzz) notifications to recipients for an already-sent message.
Urgent notifications (also called "buzz" in Feishu) send a strong push notification to specified recipients. Use this to escalate important messages that require immediate attention.
Important: The message must already be sent before sending an urgent notification. You need the message_id from a previously sent message.
| Type | Description | Cost |
|---|---|---|
app | In-app buzz notification (popup + sound) | Free |
sms | SMS push to recipient's phone | May incur cost |
phone | Voice call to recipient's phone | May incur cost |
{
"message_id": "om_xxx",
"user_ids": ["ou_xxx"],
"urgent_type": "app"
}
{
"message_id": "om_xxx",
"user_ids": ["ou_xxx"],
"urgent_type": "sms"
}
{
"message_id": "om_xxx",
"user_ids": ["ou_xxx"],
"urgent_type": "phone"
}
{
"message_id": "om_xxx",
"user_ids": ["ou_xxx", "ou_yyy", "ou_zzz"],
"urgent_type": "app"
}
| Parameter | Required | Description |
|---|---|---|
message_id | Yes | Message ID to send urgent notification for (e.g., om_xxx). The message must already be sent. |
user_ids | Yes | List of open_id values to buzz. Minimum 1 recipient. Recipients must be members of the chat where the message was sent. |
urgent_type | No | Urgency delivery method: app (default), sms, or phone. |
{
"ok": true,
"message_id": "om_xxx",
"urgent_type": "app",
"invalid_user_list": []
}
invalid_user_list: List of user IDs that could not receive the urgent notification (e.g., not in the chat, or invalid ID).