POST api/ClientApp/manage/connect_account

[已完成Demo] 连接|登录 账号(绑户操作)

Request Information

URI Parameters

None.

Body Parameters

ConnectAccountRequest
NameDescriptionTypeAdditional information
account_id

账号ID

integer

Required

clientType

客户端类型,默认值:website

string

None.

clientVersion

客户端版本,默认值:1.0.0

string

None.

Request Formats

application/json, text/json

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

Response Information

Resource Description

ConnectAccountResponse
NameDescriptionTypeAdditional information
connect_task_id

integer

None.

code

1 为成功,其他为失败

integer

None.

msg

请求描述

string

None.

Response Formats

application/json, text/json

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