Skip to content

获取空间渠道列表

1 接口名称

获取空间渠道列表

2 接口描述

3 请求地址

Plain
{apiAddress}/space/getSpaceChannel

4 请求方式

POST

5 请求参数

5.1 Header 参数

参数名必选类型/参数值说明
Content-Typeapplication/json请求参数类型

5.2 Body 参数

json
{
    "spaceId":36  // 空间ID,必填
}

6 返回示例

JSON
{
    "message": "success",
    "code": 0,
    "success": true,
    "data": [
        {
            "channelType": 1,  // 渠道类型:1客户端、2微信
            "channelId": 30,   // 渠道ID
            "channelName": "目光资讯" // 渠道名称
            "dockingAccount": "f52e7ad2" // 对接账号。即县市报的connectNo
            "realPerson":true //实人认证开关
            "clientType":true //客户端类型 false-自营 true-外部 微信为null
            "xsbTenantId": 6, // 县市报租户ID,微信无此字段
            "thirdPartyId": 11, // 天目云租户ID,微信无此字段
            "logoUrl":"https://xxx.comimg.png" // logo地址
        }
    ]
}

7 备注