Skip to content

Create Creative Set

PS: You need to use Token to change the status, for more details, please check Token

This interface can be used to create a new creative set

Request method

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

Request method

POST

Request example

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

{
"creative_set_name": "test_create_group_1",
"offer_id": 100,
"geos": [
"ALL"
],
"ad_outputs": [
211,
212,
213
],
"creatives": [
{
"creative_name": "test_creative_1",
"creative_md5": "abcd"
},
{
"creative_name": "test_creative_2",
"creative_md5": "cdfg"
}
]
}

Request Params

fielddataTypeisRequireddescdefaultValue
creative_set_namestringYcreative set name-
combination_methodintNthe combination method of creative_set:1: programmatic creative set 2: customized creative set1
offer_idintNThe offer you expect to bind after a creative set is created
geosarray<string>NCountries/regions where creative sets are used["ALL"]
ad_outputsarray<int>YThe types of ideas the creative set expects to assemble are listed below [enum - ad_output]-
creativesarray<object>YList of creatives bound to the creative set-
  creative_namestringYThe name of the creative in the creative set-
  creative_md5stringYcreative content md5-

Response

fielddataTypedesc
codeint200 code, is success. Others, are fail
msgstringIf success, return to "success". If fail, return to detailed wrong info
datajsonIf success, return to "success". If fail, return to detailed wrong info
  creative_set_namestringcreative_set_name
  creative_set_idintcreative_set_id
  offer_idintoffer_id

Response Example

json
{
  "msg": "success",
  "code": 200,
  "data": {
    "creative_set_name": "test_create_group_1",
    "creative_set_id": 2001,
    "offer_id": 100
  }
}