获取authCode

1. 接口描述

接口名称:

/eventopenapi/mcenter/thirdconf/getAuthCode

发送方式:

POST

参数格式:

accept: application/json;content-type: application/json

2. 输入参数

参数 类型 必须 说明
token String 统一鉴权token
name String 姓名
openId String 企业微信唯一id
icon String 用户头像
countryCode String 国家码
mobile String 手机号
timeout Int 可用时间
usableCount Int 可用次数
extId String 第三方ID
skipWhiteCheck boolean 是否跳过白名单检查, true:是, false: 否, 默认为false

3. 输出参数

参数 类型 说明
timeStamp Long 返回时间(时间戳,单位毫秒)
requestId String 请求ID(在接口异常时, 需提供请求ID)
code Int 返回的状态码
msg String 当返回结果的状态码不为200时,包含的错误信息
data json 返回数据

data 参数说明

参数 类型 说明
authCode String 授权码

4. 示例

输入示例

{
    "timeout":10,
    "usableCount":100,
    "icon":"dfsf",
    "mobile": "180192839191",
    "countryCode": "86",
    "openId": "1224124",
    "name": "test",
    "skipWhiteCheck":false
}

输出示例

{
    "timeStamp": 1659940422103,
    "code": 200,
    "msg": "Successfully to getAuthCode!",
    "data": {
        "authCode": "43ac1b98-c247-44d0-a019-0bb97b346b4f"
    },
    "requestId": "172.10.123.168_20220808_143338_1659940418941"
}