首页 帮助中心 API

新增任务流

说明: 通过接口创建任务流。

请求参数说明:

参数 说明 是否必填 类型

name

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

String

flow

任务流节点

JSONArray

  waitingTime

等待时间(s)30-120

Int

  status

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

Int

  channel

通道类型 [sms, call]

String

  channelCut

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

Int

请求URL:

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

请求示例:

                   
                      	Request URL:
							https://api.onbuka.com/v3/otp/flow/add
						Request Method:
							POST
						Request Headers:
							Content-Type: application/json;charset=UTF-8
							Sign: 05d7a50893e22a5c4bb3216ae3396c7c
							Timestamp: 1630468800
							Api-Key: bDqJFiq9
						Request Body:
						{
						  "name": "测试任务流",
						  "flow": [
							{
							  "waitingTime": 30,
							  "status": 1,
							  "channel": "sms",
							  "channelCut": 0
							}
						  ]
						}
                    

                  

响应参数说明:

参数 说明 类型

status

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

String

reason

失败原因说明

String

data

响应参数详情

JSONObject

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": 1,
										"channel": "sms",
										"channelCut": 0
									}
								]
							}
						}
                    

                  
 

下一篇: 更新任务流

意见反馈

0/500