资料库

- API文档
来自ID开放平台
跳转至: 导航搜索

oauth2/access_token

OAuth2的access_token接口

URL

https://api.10000.com/company/get_list

HTTP请求方式

GET

请求参数

必选 类型及范围 说明
client_id true string 申请应用时分配的AppKey。
access_token true string 采用OAuth授权方式为必填参数,OAuth授权后获得。
coid true integer 需要查询的企业ID。

返回数据

返回值字段 字段类型 字段说明
coid integer 示例
uid integer 示例
gid integer 分组ID
coid integer 示例
uid integer 示例
state integer 客服状态:0关闭,1正常
nickname string 客服昵称
create_time string 创建时间戳
gender integer 性别:1男,2女
mobile string 联系方式
name string 姓名

[
    {
        "state": "1",
        "nickname": "",
        "create_time": "1388383207",
        "gender": "1",
        "mobile": "",
        "name": "姓名"
    },
    {
        "id": "93",
        "coid": "10123",
        "uid": "30002",
        "role_id": "0",
        "gid": "15",
        "state": "1",
        "nickname": "",
        "create_time": "1388383207",
        "gender": "1",
        "mobile": "",
        "name": "client_b"
    }
]