入ってください
メニュー

API: Creative Set更新(テクニカルガイド)

offers を管理するには、Mintegral token を使用する必要があります。詳細は Token を確認してください。

MintegralのAPIを使用してcreative groupsを更新する方法は以下のとおりです。

Request method

https://ss-api.mintegral.com/api/open/v1/creative_set

Request method

PUT

Request example

json Copy
PUT /api/open/v1/creative_set HTTP/1.1
Host: ss-api.mintegral.com
Content-Type: application/json

{
"offer_id": 100,
"creative_set_name": "test_group_1",
"geos": [
"US",
"CN"
],
"ad_outputs": [
111,
121,
131,
132
],
"creatives": [
{
"creative_name": "test_creative_1",
"creative_md5": "abcd",
"option": "ENABLE"
},
{
"creative_name": "test_creative_1",
"creative_md5": "abcd",
"option": "DISABLE"
}
]
}

Request Params

field dataType isRequired desc defaultValue
offer_id int Y Offer ID
creative_set_name string Y Creative Set Name
geos array<string> N creative setsを使用するCountries/regions
ad_outputs array<int> N creative setがassembleする想定のcreative typeは以下に記載されています
[ENUM Ad Output]
creatives array<object> N creative setにbindするcreativesのlist
   option string Y creative group内のこのmaterialのedit mode: 追加はENABLE、削除はDISABLE
   creative_name string Y Creative Name
   creative_md5 string Y Creative MD5

Response

field dataType desc
code int 200 codeはsuccessです。その他はfailです
msg string successの場合は"success"を返します。failの場合は詳細なerror infoを返します
data json successの場合は"success"を返します。failの場合は詳細なerror infoを返します

Response Example

json Copy
{
  "msg": "success",
  "code": 200,
  "data": {}
}
前の
API: Creative Set削除(テクニカルガイド)
API: クリエイティブ情報取得(テクニカルガイド)
最近変更された: 2026-08-06