消息发送
POST
/openservice/eagle-user/message/send
后端接口/消息服务
EagleUserMessageSendPostRequest request = new EagleUserMessageSendPostRequest();
request.setEntId("APICeShiQiYe");
request.setChannel("supos");
request.setSenderId("ApiTest");
request.setMessageTitle("消息标题");
List r = new ArrayList<>();
r.add("ApiTest");
request.setReceivers(r);
request.setType("email");
request.setType("stationLetter");
request.setMessageBody("消息主要内容xxxx");
EagleUserMessageSendResponse response = qpaasHttpClient.doAction(request);
System.out.println(JSON.toJSONString(response));
请求参数
Body 参数application/json
返回响应
修改于 2023-04-20 01:28:10