offers を管理するには、Mintegral token を使用する必要があります。詳細は Token を確認してください。
Mintegral独自のアルゴリズムを最大限活用し、campaignおよびoffer performanceを最適化するためにcreativesを管理する方法は以下のとおりです。
https://ss-storage-api.mintegral.com/api/open/v1/creatives/upload
https://ss-storage-api.mintegral.com/api/open/v1/playable/upload
POST
POST /api/open/v1/creatives/upload
HTTP/1.1 Host: ss-storage-api.mintegral.com
Content-Type: multipart/form-data;boundary=xxxx
| Fields | Type | Explanations | Default Value | Examples |
|---|---|---|---|---|
| file | file | Creative file detail。fileのmd5がすでに存在する場合、errorが発生します。 | — | — |
| Fields | Type | Explanations |
|---|---|---|
| code | int | 200 codeはsuccessです。その他はfailです。 |
| msg | string | successの場合は"success"を返します。failの場合は詳細なerror infoを返します。 |
| data | json | successの場合はcreative dataを返します。failの場合は詳細なerror infoを返します。 |
| creative_md5 | string | 正常にuploadされたcreativeのMD5。 |
| creative_name | string | Creative name。creative nameはletters、digits、またはunderscoreである必要があります |
{
"msg": "success",
"code": 200,
"data": {
"creative_md5": "0a6335cd9151ac5dc79ad996f4e12674",
"creative_name": "creative_test.png"
}
}