- 原接口重写
- 订阅相关接口
- 规范申报接口
- 用户账户信息
- 支付接口
- 退款接口
- 用户消费记录查询
- 用户充值记录查询
- 广告内容
- 发 票
- 档位接口
- 金币转换接口
- 意见反馈
- 全流程接口
- 报关单核验
广告列表
开发中
POST
https://wusan53.cn/fzx-tgb-api/queryAdList
请求参数
Body 参数application/json
title
string
标题
adId
string
广告ID
type
string
广告类型
示例
{
"title": "",
"adId": "",
"type": ""
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://wusan53.cn/fzx-tgb-api/queryAdList' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "",
"adId": "",
"type": ""
}'
返回响应
🟢200成功
application/json
Body
code
integer
必需
success
boolean
必需
message
string
必需
timestmp
integer
必需
data
array [object {9}]
必需
adId
string
广告ID,主键
title
string
广告标题
content
string
广告内容
link
string
广告链接
image
string
广告图片URL
type
string
广告类型
startDate
string
广告开始时间
endDate
string
广告结束时间
status
string
广告状态
示例
{
"code": 0,
"success": true,
"message": "string",
"timestmp": 0,
"data": [
{
"adId": "string",
"title": "string",
"content": "string",
"link": "string",
"image": "string",
"type": "string",
"startDate": "string",
"endDate": "string",
"status": "string"
}
]
}
修改于 2023-10-10 07:54:32