POST api/ClientApp/manage/connect_account_result

[已完成Demo] 绑定账号结果查询, 再 “提交绑定OTP” 动作完成之后循环调用

Request Information

URI Parameters

None.

Body Parameters

ConnectAccountResultRequest
NameDescriptionTypeAdditional information
connect_task_id

连接任务ID

integer

Required

clientType

客户端类型,默认值:website

string

None.

clientVersion

客户端版本,默认值:1.0.0

string

None.

Request Formats

application/json, text/json

Sample:
{
  "connect_task_id": 1,
  "clientType": "sample string 1",
  "clientVersion": "sample string 2"
}

Response Information

Resource Description

ConnectAccountResultResponse
NameDescriptionTypeAdditional information
connect_task_status

连接任务状态 [3-任务执行中; 5-任务执行成功; 6-任务执行失败]

integer

None.

code

1 为成功,其他为失败

integer

None.

msg

请求描述

string

None.

Response Formats

application/json, text/json

Sample:
{
  "connect_task_status": 1,
  "code": 1,
  "msg": "sample string 2"
}