公司详细信息¶
| 接口地址: | /api/organization/organization-detail/ |
|---|---|
| Http请求方式: | POST |
| 内容格式: | application/json |
| 权限: | organization |
| 参数: |
| 参数 | 参数名 | 类型 | 是否必须 | 说明 |
|---|---|---|---|---|
| organization code | org_code | string | 是 | 公司号 |
| timestamp | timestamp | string | 是 | 时间戳 |
| sign | sign | string | 是 | 签名 |
| 返回值: |
|---|
- name: 公司名称
- code:公司唯一编号
- descendants: 子孙公司列表
| 请求示例: |
|---|
{
"org_code": "aaa"
}
| 返回示例: |
|---|
{
"result_message": "",
"result_code": "organization_details",
"result": {
"name": "aaa name",
"code": "aaa",
"descendants": [
{
"code": "aaa0001",
"name": "aaa0001 name"
},
{
"code": "aaa0002",
"name": "aaa0002 name"
}
]
}