You need to use your Mintegral token to manage your offers. For more details, please check Token.
Here's how you can manage creatives to best utilize Mintegral's proprietary algorithm for optimal campaign and offer performance.
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. If md5 of file already exists, an error will occur. | — | — |
| Fields | Type | Explanations |
|---|---|---|
| code | int | 200 code indicates success. All other codes are fails. |
| msg | string | If success, report "success". If fail, return detailed fail info. |
| data | json | If success, return to creative data. If fail, return detailed fail info. |
| creative_md5 | string | MD5 for creative has been uploaded successfully. |
| creative_name | string | Creative name; please note creative name must be letters, digits, or underscores |
{
"msg": "success",
"code": 200,
"data": {
"creative_md5": "0a6335cd9151ac5dc79ad996f4e12674",
"creative_name": "creative_test.png"
}
}