简要描述
请求URL
请求方式
请求参数
参数名 |
必选 |
类型 |
说明 |
apiKey |
是 |
string |
ApiKey |
nonce |
是 |
string |
随机字符串 |
timestamp |
是 |
string |
时间戳(秒) |
sign |
是 |
string |
签名 |
请求示例
{
"nonce": "iGJASoKL",
"timestamp": "1649828681",
"apiKey": "a4s690Kx2W5U0Gu2",
"sign": "f6c2b273a7ecde42767c726d580a52c0",
}
响应参数
参数名 |
类型 |
说明 |
id |
integer |
部门编号 |
parentId |
integer |
父部门编号 |
name |
string |
部门名称 |
createTime |
string |
创建时间 |
updateTime |
string |
修改时间 |
响应示例
{
"code": 0,
"status": true,
"message": "请求成功",
"data": [
{
"id": 6,
"parentId": 0,
"name": "客服部",
"createTime": "2022-12-06 14:03:07",
"updateTime": "2022-12-06 14:03:07"
},
{
"id": 9,
"parentId": 0,
"name": "有关部门",
"createTime": "2022-12-09 17:37:36",
"updateTime": "2022-12-09 17:37:36"
}
]
}