# 获得岗位
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/product/member/get_job?access_token=xxxxxxxxx
# 请求参数示例
{
"job_id": 11
}
# 回包示例
{
"errcode": 0,
"errmsg": "ok",
"job_info": {
"job_id": 11,
"job_remark": "备注1",
"job_name": "岗位1",
"authority_id_list": [1,2,3]
}
}
# 请求参数说明
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
job_id | number | 是 | 岗位id |
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
job_info.job_id | number | 岗位id |
job_info.job_remark | string | 岗位备注 |
job_info.job_name | string | 岗位名 |
job_info.authority_id_list | number array | 岗位所有权限集 |