文档中心 > API类目 > 瓴羊客服云

alibaba.lyservice.group.msg.send (消息发送到群)

推送消息到群

公共参数

请求参数

名称 类型 是否必须 示例值 更多限制 描述
open_send_msg_request OpenSendMsgRequest 必须 入参
  • └ tenant_id
  • Number
  • 必须
  • 200110004
  • 租户id
  • └ msg_param
  • String
  • 必须
  • {"content": "我的平文本消息"}
  • 消息体
  • └ msg_key
  • String
  • 必须
  • sampleText
  • 消息格式
  • └ chat_bot_id
  • String
  • 必须
  • cco-custom-service-robot-00
  • 群内机器人id
  • └ open_conversation_id
  • String
  • 必须
  • cidohh7ce1kZXwdLZ1h6nzCyA==
  • 群id

响应参数

名称 类型 示例值 描述
result ResultDO 出参
  • └ code
  • String
  • 200
  • code
  • data
  • SendMsgToGroupResponse
  • 结果
  • └ process_query_key
  • String
  • abcd
  • process_query_key
  • └ success
  • Boolean
  • true
  • 是否成功

请求示例

  • JAVA
  • .NET
  • PHP
  • CURL
  • Python
  • C/C++
  • NodeJS
TaobaoClient client = new DefaultTaobaoClient(url, appkey, secret);
AlibabaLyserviceGroupMsgSendRequest req = new AlibabaLyserviceGroupMsgSendRequest();
AlibabaLyserviceGroupMsgSendRequest.OpenSendMsgRequest obj1 = new AlibabaLyserviceGroupMsgSendRequest.OpenSendMsgRequest();
obj1.setTenantId(200110004L);
obj1.setMsgParam("{\"content\": \"我的平文本消息\"}");
obj1.setMsgKey("sampleText");
obj1.setChatBotId("cco-custom-service-robot-00");
obj1.setOpenConversationId("cidohh7ce1kZXwdLZ1h6nzCyA==");
req.setOpenSendMsgRequest(obj1);
AlibabaLyserviceGroupMsgSendResponse rsp = client.execute(req);
System.out.println(rsp.getBody());

响应示例

  • XML示例
  • JSON示例
<alibaba_lyservice_group_msg_send_response>
    <result>
        <code>200</code>
        <data>
            <process_query_key>abcd</process_query_key>
        </data>
        <success>true</success>
    </result>
</alibaba_lyservice_group_msg_send_response>

异常示例

  • XML示例
  • JSON示例
<error_response>
    <code>50</code>
    <msg>Remote service error</msg>
    <sub_code>isv.invalid-parameter</sub_code>
    <sub_msg>非法参数</sub_msg>
</error_response>

错误码解释

错误码 错误描述 解决方案

API工具

如何获得此API

FAQ

返回
顶部