**接口地址**
```
/im/server/sendMsgUser
```
**接口说明**
```
给指定用户发消息,参数为你平台的用户id
```
**请求方式**
> POST
>
**参数**
| 参数| 类型| 说明 |
| --- | ---| ---
| app_id | string | APPID |
| user_ids| json数组| 多个用户id,格式:[1,2,3]
|msg|string|消息内容
**返回结果**
```
{
"code": 1,
"message": "通知完成",
"data": {
"count_noline": 2,.//总人数
"count_no_find": 0,//不存在的用户数
"count_no_noline": 1//在线人数,成功发送人数
},
"url": null
}
```
*****
--: 更新时间:2022年6月7日 18:49:48