获取跳转页模板列表
GET
/v1/chain/getTemplateList?apikey=8c1331250ede960fd51ac56a829cc6893ce8c000:::highlight yellow 💡
- 调用次数限制:3000次/天;
- 调用频率限制为:5次/秒;
:::
:::note[]
获取用户自定义的跳转页模板,如果跳转页使用通用模板,则不需要调用此接口。
:::
请求参数
Query 参数
apikey
string
必需
接口调用令牌ApiKey
示例值:
8c1331250ede960fd51ac56a829cc6893ce8c000
page
string
页码
示例值:
1
pageCount
string
每页数据条数
示例值:
100
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
code
integer
返回的状态码
code为1代表接口处理成功
msg
string
返回的状态信息
result
object
返回的数据
list
array [object {6}]
跳转模板list
total
integer
模板总数
page
string
当前页码
pageCount
string
总页数
used_num
integer
已创建的模板数量
template_limit
integer
限制创建模板的个数
示例
{
"code": 1,
"msg": "success",
"result": {
"list": [
{
"id": 1,
"name": "模板名称-1",
"type": 3,
"thumb": "preview/4/595803113014.png",
"update_time": "2024-10-08 09:36:31",
"is_use": 1
},
{
"id": 2,
"name": "模板名称-2",
"type": 3,
"thumb": "preview/4/26477914.png",
"update_time": "2024-09-26 17:33:03",
"is_use": 1
}
],
"total": 2,
"page": "1",
"pageCount": "1",
"used_num": 2,
"template_limit": 1
}
}
最后修改时间: 4 个月前