1.1. RPA任务推送接口
该接口用于推送RPA进行任务执行
1.1.1. 请求方法
POST api/v1/createRpaTask
1.1.2. 请求参数
参数 | 是否必须 | 说明 |
---|---|---|
corpId | 是 | 企业微信corp_id |
robotId | 是 | 需要使用的RPA机器人ID |
targetId | 是 | 发送目标id |
targetName | 是 | 发送目标名称 |
targetType | 是 | 发送目标类型 group 外部群 customer 外部客户 |
sendContent | 是 | 发送内容 |
- text | 否 | 文本内容 |
- attachments | 否 | 文件链接数组 |
1.1.3. 入参示例
{
"corpId": "wxxxxxxxxxxx078",
"sendContent": {
"text": "测试连续发送图片",
"attachments": [
"https://xxxxxxx.xx.xx/ecology/material/2021-09-29/1039/20210929/MDfQAEnfxr/5a8174c3-0d42-4eaf-9fde-f5f43e3688e6.jpg",
"https://xxxxxxx.xx.xx/ecology/material/2021-09-29/1039/20210929/ESBe22CbPH/3c4a0db99f639a6aee5c114a5b00901b.jpeg"
]
},
"targetId": "11111xxxx",
"targetName": "我是群名称",
"targetType": "group"
}
1.1.4. 返回数据
属性名 | 类型 | 说明 |
---|---|---|
errcode | 整型 | 返回码 |
errmsg | 字符串 | 对返回码的文本描述内容 |
data | 对象 | 任务保存信息 |
- id | 整型 | 任务id |
- createTime | 字符串 | 任务创建时间 |
1.1.5. 返回示例
{
"errcode": 0,
"errmsg": "ok",
"data": {
"id":0,
"createTime":"2022-06-10 14:53:50"
}
}