简要描述
- 调用接口查看公司列表
接口版本
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
V 1.0 | xxxx-xx-xx |
请求URL:
请求方式:
- GET
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
access_token | 是 | string | 获取到的授权码access_token |
keyword | 是 | string | 搜索关键字(如:爱家家庭服务) |
num | 否 | string | 每页显示条数,留空默认每页10条,控制了每页最多可显示20条 |
page | 否 | string | 查询第几页数据,留空默认第1页,控制最多翻10页,建议补全关键字 |
返回示例:
正确时返回一:
{
"code": 200,
"msg": "查询成功!",
"data": {
"companys": [
{
"urlcode": "e2b1498a29e228129a1c1b911e5811ee",
"company_name": "广州市正新人力资源服务有限公司潮州分公司",
"province": "广东",
"city": "潮州市",
"area": null,
"unified_social_credit_code": "91445100354627855T",
"legal_representative": "卢楚云",
"registered_capital": "",
"phone_number": "0768-3996808",
"registered_address": "潮州市枫溪区瓷兴路枫溪商城八栋143号铺",
"is_authentication": null,//是否已认领
"platform": null,//使用平台数
"association": null,//加入协会数
"grade": null,//企业等级
"haoping": null,//好评数
"zhongping": null,//中评数
"chaping": null,//差评数
"tousu": null//投诉数
},
{
"urlcode": "66549629394d913dc3d45a8078ee1624",
"company_name": "广州市开物物业管理有限公司潮州分公司",
"province": "广东",
"city": "潮州市",
"area": null,
"unified_social_credit_code": "91445100MA4UR8M51E",
"legal_representative": "叶盛灵",
"registered_capital": "",
"phone_number": "0768-2319992",
"registered_address": "广东省潮州市韩山师范学院东区B幢一层",
"is_authentication": null,
"platform": null,
"association": null,
"grade": null,
"haoping": null,
"zhongping": null,
"chaping": null,
"tousu": null
}
],
"page": "1",
"num": "2",
"page_num": 2,
"耗时": 0.092999999999999999
}
}
错误时返回:
{
"code": 400,
"msg": "access_token 无效!",
"data": {
"status": "error"
}
}
说明:出现此错误时,请重新请求授权。