11.根据栋舍id获取栏号列表
POST
openapi/getColumns
请求参数
Body 参数application/json
houseId
integer
必需
appid
string
必需
noncestr
string
必需
sign
string
必需
示例
{
"houseId": "589153647129001984",
"appid": "777575637740158976",
"noncestr": "1655111857793",
"sign": "D0BDC82105E8B145E12DE98624C8521B"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'openapi/getColumns' \
--header 'Content-Type: application/json' \
--data-raw '{
"houseId": "589153647129001984",
"appid": "777575637740158976",
"noncestr": "1655111857793",
"sign": "D0BDC82105E8B145E12DE98624C8521B"
}'
返回响应
🟢200成功
application/json
Body
data
array [object {2}]
必需
id
string
栏号id
name
string
栏号名称
code
integer
必需
message
string
必需
page
null
必需
success
boolean
必需
示例
{
"data": [
{
"id": "132",
"name": "xxx"
}
],
"code": 200,
"message": "成功",
"page": null,
"extParam": null,
"success": true
}
修改于 2023-12-12 07:07:53