Bots
通过机器人发送消息
通过指定的机器人向目标发送消息。仅支持 API Key 认证。
post/api/v1/platform/bots/{bot_uuid}/send_message
Path parameters
bot_uuidstring uuid required
Request body
Example request
{
"message_chain": [
{
"type": "Plain",
"text": "Hello, World!"
}
]
}Response
发送成功
Example response
{
"data": {
"sent": true
}
}