首页 帮助中心 API

查询所有任务流

说明: 获得当前用户下所有任务流。

请求URL:

                    
                      https://api.onbuka.com/v3/otp/flow/list
                    
                  

请求示例:

                    
                        Request URL:
                            https://api.onbuka.com/v3/otp/flow/list
                        Request Method:
                            GET
                        Request Headers:
                            Content-Type: application/json;charset=UTF-8
                            Sign: 05d7a50893e22a5c4bb3216ae3396c7c
                            Timestamp: 1630468800
                            Api-Key: bDqJFiq9
                    

                  

响应参数说明:

参数 说明 类型

status

状态码,0成功,其他失败参见状态码说明

String

reason

失败原因说明

String

data

响应参数详情

JSONArray

flowId

任务流ID

Int

name

模板名称,4-32字符,用户下不允许重复

String

flow

任务流节点

JSONArray

  waitingTime

等待时间(s)30-120

Int

  status

1发送失败(发送失败/报告失败)2未校验(包括校验失败)

Int

  channel

通道类型 [sms, call]

String

  channelCut

是否切换通道发送(0切换1不切换)默认0

Int

响应示例:

                    
                        {
                            "status": "0",
                            "reason": "success",
                            "data": [
                                {
                                    "flowId": 1,
                                    "name": "测试任务流",
                                    "flow": [
                                        {
                                            "waitingTime": 30,
                                            "status": 2,
                                            "channel": "sms",
                                            "channelCut": 0
                                        }
                                    ]
                                },
                                {
                                    "flowId": 2,
                                    "name": "测试任务流124",
                                    "flow": [
                                        {
                                            "waitingTime": 30,
                                            "status": 1,
                                            "channel": "sms",
                                            "channelCut": 0
                                        }
                                    ]
                                }
                            ]
                        }
                    

                  
 

意见反馈

0/500