连接-凭证表单✅
GET
/api/v1/device/connect/form- json表单解析请查看【腾讯文档】apifox测试问题接口说明
https://docs.qq.com/doc/DZWtobEtYVmNFR05o
Request
Query Params
device_id
string
设备id
Request samples
Responses
成功(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
code
integer
必需
message
string
必需
data
array [object {5}]
必需
dataKey
string
必需
label
string
必需
placeholder
string
必需
type
string
必需
validate
object
必需
Example
{
"code": 200,
"message": "SUCCESS",
"data": [
{
"dataKey": "username",
"label": "username",
"placeholder": "MTQQ username",
"type": "input",
"validate": {
"message": "The username cannot be empty",
"required": true,
"type": "string"
}
},
{
"dataKey": "password",
"label": "password",
"placeholder": "MTQQ password",
"type": "input",
"validate": {
"required": false,
"type": "string"
}
}
]
}
Last modified: 10 个月前