• 接口说明

    • 通过该接口获取基础数据
    • 基础数据包括设备类型列表
    • 按需求获取返回的数据枚举类型
  • 获取设备类型列表请求接口(按需获取)

    • /ati/openApi/getAdvertDeviceTypes
  • 请求参数

参数名 类型 是否必填 说明
appid String 平台应用appid
sign String 签名字符串
data obj 请求参数json字符串
-timestamp Long 当前时间戳,秒数
  • 请求示例

{
    "appId": "ymcb75a59c65eb4521",
    "sign": "aa00e7fbb9af00a25660e66edf9c2ecf",
    "data": {
        "timestamp": "1749613664"
    }
}
  • 响应参数

参数名 类型 说明
code String 响应码 0:成功;其他失败
msg String 消息描述
data list集合 响应体信息
-dictLabel String 名字
-dictValue String
  • 响应示例

{
    "msg": "操作成功",
    "code": 0,
    "data": [
        {
            "searchValue": null,
            "createBy": "zwt123",
            "createTime": "2025-02-15 17:31:37",
            "updateBy": null,
            "updateTime": null,
            "remark": null,
            "params": {},
            "dictCode": 159,
            "dictSort": 0,
            "dictLabel": "IOS",
            "dictValue": "2",
            "dictType": "advert_device_type",
            "cssClass": null,
            "listClass": "default",
            "isDefault": "N",
            "status": "0",
            "default": false
        },
        {
            "searchValue": null,
            "createBy": "zwt123",
            "createTime": "2025-02-15 17:31:47",
            "updateBy": null,
            "updateTime": null,
            "remark": null,
            "params": {},
            "dictCode": 160,
            "dictSort": 0,
            "dictLabel": "安卓",
            "dictValue": "1",
            "dictType": "advert_device_type",
            "cssClass": null,
            "listClass": "default",
            "isDefault": "N",
            "status": "0",
            "default": false
        }
    ]
}
作者:吴勇  创建时间:2025-06-11 12:05
最后编辑:吴勇  更新时间:2025-06-20 15:49