Search...
Menu

API: Deleting Creative Sets (Technical Guide)

Label:API ,API key ,creative sets ,technical guide ,developer guide

You need to use your Mintegral token to manage your offers. For more details, please check Token.

Here's how to remove creative sets from offers using Mintegral's API.

Request method

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

Request method

DELETE

Request example

json Copy
DELETE /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"
}

Request Params

field dataType isRequired desc
offer_id int Y offer ID
creative_set_name string Y creative set name

Response

field dataType desc
code int 200 code, is success. Others, are fail
msg string If success, return to "success". If fail, return to detailed wrong info
data json If success, return to "success". If fail, return to detailed wrong info

Response Example

json Copy
{
  "msg": "success",
  "code": 200,
  "data": {}
}
Previous
API: Creating Creative Sets (Technical Guide)
Next
API: Updating Creative Sets (Technical Guide)
Last modified: 2025-08-28