API Method – delOfferBanners

    delOfferBanners
    Remove offer banner information.

API Category

    Offer

HTTP Method

    POST

Request Call Example

    HTTP:
    POST /api/v2/delOfferBanners?key=yourapikey HTTP/1.1
    Host: yourapplicationdomain
    Content-Type: application/x-www-form-urlencoded
 
    offer_id=3725165&banner_id=13%2C14
 
    Java:
    Unirest.post("yourapplicationdomain/api/v2/delOfferBanners?key=yourapikey").header("Content-Type", "application/x-www-form-urlencoded").body("offer_id=3725165&banner_id=13%2C14").asString();

Parameters


Name Type Description
offer_id* Integer Offer Id
banner_id String A list of banner ids. Remove all banners by removing this parameter in request.

Response

Sample in JSON:

{
    "httpStatus": 202,
    "data": {
        "456": [
            {
                "banner_id": "80",
                "offer_id": "456",
                "path": "http://test.fuseclick.com/resource/rw/offer/456/banners/1499829186_20150126025208292_easyicon_net_128.png",
                "width": "111",
                "height": "106"
            }
        ]
    },
    "errorCode": 0,
    "message": ""
}