获取素材列表
需要携带 Token,详情看 Token
获取素材列表,支持 creative_md5、creative_name、creative_type、resolution 条件查询。默认返回当前账号下所有的素材。
请求地址
https://ss-api.mintegral.com/api/open/v1/creatives/source
请求方法
GET
请求示例
json
GET /api/open/v1/creatives/source
HTTP/1.1 Host: ss-api.mintegral.com
Content-Type: application/json
{ "page": 1, "creative_type": "VIDEO", "limit": 10 }
请求参数
字段 | 类型 | 说明 | 默认值 | 例子 |
---|---|---|---|---|
creative_md5 选填 | string | 素材 md5 值。多个用, 隔开。最多支持 200 个。 | — | "0a6335cd9151ac5dc79ad996f4e12674" |
creative_name 选填 | string | 素材名称,默认为文件名,必须为字母、数字、下划线 | — | "creative_test.png" |
creative_type 选填 | string | 素材类型,可选值:"IMAGE" 、"VIDEO" 、"PLAYABLE" | — | "IMAGE" |
resolution 选填 | string | 素材的分辨率或像素。多个用,号分隔。最多支持 200 个。 | — | "1200x627" |
page 选填 | int | 页数 | 1 | 1 |
limit 选填 | int | 每页数量 最大值:200;大于 200 时,接口只返回 200 个 | 200 | 50 |
响应结果
字段 | 类型 | 说明 |
---|---|---|
code | int | 200 表示成功,其他表示失败 |
msg | string | 成功,返回"success",失败返回相应的错误信息 |
data | json | 成功,返回素材列表信息,失败返回具体的错误信息 |
page | int | 当前在第几页 |
limit | int | 数量限制 |
total | int | 总数量 |
list | array<json> | |
creative_type | string | 素材类型。枚举值:"IMAGE" 、"VIDEO" 、"PLAYABLE" |
creative_md5 | string | 素材 md5 值 |
creative_name | string | 素材名称 |
resolution | string | 素材的分辨率或像素 |
size | number | 素材大小,单位 KB |
language | string | PLAYABLE素材的语种 |
platform | string | PLAYABLE素材的可投放平台,枚举值:"ANDROID" 、"IOS" 、"ALL" |
应答示例
json
{
"code": 200,
"msg": "success",
"data": {
"page": 1,
"limit": 2,
"total": 4,
"list": [
{
"creative_type": "IMAGE",
"creative_name": "dd.png",
"creative_md5": "0a6335cd9151ac5dc79ad996f4e12674",
"resolution": "300x300",
"size": 10.039,
"language": null,
"platform": null
},
{
"creative_type": "IMAGE",
"creative_name": "aaa.png",
"creative_md5": "0a6335cd9151ac5dc79ad996f4e12674",
"resolution": "300x300",
"size": 10.039,
"language": null,
"platform": null
}
]
}
}