-
10周年大促!注册即领300元优惠券
- 注册/登录
该接口用于获取活动团队模板列表,可在系统集成团队模板添加、管理模板。
请求地址 | https://open.rrx.cn/api/v1/tpl/getList | ||
请求方式 | GET | ||
参数说明 | |||
参数名称 | 是否必须 | 类型 | 说明 |
app_key | 是 | string(32) | 人人秀平台分配的AppKey |
time_stamp | 是 | int(11) | 1970-01-01开始的时间戳,精确到毫秒 |
sign | 是 | string(32) | 根据签名算法计算所得,如何计算签名 |
category_id | 否 | int(11) | 分类ID,0表示全部(不包含分类禁用模板) |
search_key | 否 | string(32) | 搜索关键词,支持标题i、标签(多标签关联) |
state | 否 | int(11) | 模板上下架状态,0:全部;1:上架;2:下架 |
type | 否 | int(11) | 活动类型枚举,0:全部;1:H5;2:互动;3:活动专题;4:文章;5:海报 |
page | 是 | int(11) | 第几页数据 |
limit | 是 | int(11) | 每页多少条数据 |
返回JSON格式结果 Content-type: application/json | ||
{"result":0,"msg":""," data:{total:1,rows:[]}} | ||
参与名称 | 类型 | 说明 |
result | int(2) | 0表示成功,1表示失败 |
msg | string(100) | 失败时,返回的错误描述 |
data | obj | 详情见data参数说明 |
data参数说明
参与名称 | 类型 | 说明 |
total | int(11) | 总数量 |
rows | array | 详见rows参数说明 |
rows参数说明
参与名称 | 类型 | 说明 |
team_tpl_guid | string(6) | 团队模板GUID |
title | string(20) | 模板标题 |
tpl_image_url | string(200) | 模板封面图(活动分享图) |
origin | int(11) | 来源枚举,1:人人秀模板;2:用户作品 |
state | int(11) | 模板上下架状态,1:上架;2:下架 |
type | int(11) | 活动类型枚举,1:H5;2:互动;3:活动专题;4:文章;5:海报 |
categoryid | int(11) | 模板分类ID |
tags | string(200) | 模板标签,多个逗号分割 |
请求示例
{
"app_key": "96c84928b1dce057d110ea3b3880fc83",
"time_stamp":"1543999047492",
"sign ":"051BF3517D40AB9D7D6B45EF6E4EB7F9",
"category_id": 0,
"search_key": "",
"state":0,
"type":0,
"page ":1,
"limit ":20
}
返回值示例, json格式 Content-type: application/json
{
"result": 0,
"data": {
"total": 1,
"rows": [{
"team_tpl_guid ": "abc123",
"title": "红色喜庆大转盘抽奖模板",
"tpl_image_url": "https://dl-file2.rrxiu.net/g1...webp",
"orign": 1,
"state": 1,
"type": 1,
"category_id": 123,
"tags": "红色,大转盘,五一活动"
}]
},
"msg": "ok"
}