获得WEB入会TOKEN

获得WEB入会TOKEN

1. 接口描述

接口名称:

/confopenapi/web/meeting/join/token

发送方式:

POST

参数格式:

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

2. 输入参数

Http Header

参数名 必选 类型 说明
token string 接口调用鉴权参数

HttpBody

参数名 必选 类型 说明
eventId int 会议预约ID
plainText json 要加密的明文JSON对象
timeout int 有效时间, 分钟 默认五分钟
usableCount int 可使用次数, 默认6次

3. 请求示例

传参示例

{
    "eventId":11807,
    "plainText":{"userId":12345,"name":"mike"}
}

4. 返回参数

参数名 类型 说明
status int 0:成功,非0失败
result json 查询结果

result参数说明

参数名 类型 说明
eventId int 设备ID
tempToken string 临时TOKEN
参数名 类型 说明
GroupName string 分组名称

返回示例

{
    "status": 0,
    "result": {
        "eventId": 1165158,
        "tempToken": "5d41c4ac806c6440eb6aa8e071115f2b"
    },
    "msg": "success",
    "request_id": "confopenapiserver-172371014-1774514768.581757447.258",
    "timestamp": 1774514768581,
    "request_duration": "38.849885ms"
}

备注

  • 更多返回错误代码请看首页的错误代码描述