POST api/ClientApp/manage/connect_otp_submit
[已完成Demo] 提交绑定OTP
Request Information
URI Parameters
None.
Body Parameters
ConnectOTPSubmitRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| connect_task_id |
连接任务ID |
integer |
Required |
| OTP |
连接任务OTP (由用户手动输入) |
string |
Required |
| clientType |
客户端类型,默认值:website |
string |
None. |
| clientVersion |
客户端版本,默认值:1.0.0 |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"connect_task_id": 1,
"OTP": "sample string 1",
"clientType": "sample string 2",
"clientVersion": "sample string 3"
}
Response Information
Resource Description
BaseResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| code |
1 为成功,其他为失败 |
integer |
None. |
| msg |
请求描述 |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": 1,
"msg": "sample string 2"
}