公司列表


说明:返回所有允许查看的公司列表,并通过指定的字段进行筛选
接口地址:/api/organization/organization-list/
Http请求方式:POST
内容格式:application/json
权限:organization
参数:
参数 参数名 类型 是否必须 说明
employee number ee_no string 员工号,一个公司内部需唯一
timestamp timestamp string 时间戳
sign sign string 签名
返回值:
  • name: 公司名称
  • code:公司唯一编号
  • descendants: 子孙公司列表
请求示例:
{
    "ee_no": "boen001"
}
返回示例:
{
 "result_message": "",
 "result_code": "organization_list",
 "result": [
     {
         "name": "京东方智能科技有限公司",
         "code": "boe00020003",
         "descendants": []
     }
]
}