Update Affiliate Caps

Path parameters

NOTE : When meet CPS offer,affiliate cap type can be only set as the same type with Offer Cap.

If offer cap type is 1 or 2, affiliate cap type only can be set as 1, 4 or 2, 5(type=1 or 2 means conversion cap, type=4 or 5 means click cap).

If offer cap type is 3 (budget cap), then affiliate cap type only can be set as 3 (budget cap).

If offer cap type is set as 0 (no cap), affiliate cap can be set as 1, 2, 3, 4, 5.

Request body parameters

Response body parameters

Example request

Request PUT https://{networkname}.api.offerslook.com/v1/offers/16/affiliate_caps/8

    {
      "category": 2,
      "cap_click": 12332,
      "cap_type": 5
    }

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "affiliate_cap": [
          {
            "id": 17,
            "affiliate_id": 8,
            "campaign_id": 16,
            "cap_type": 5,
            "cap_click": 12332,
            "cap_conversion": 0,
            "cap_budget": "0",
            "category": 2,
            "create_time": 1462591223
          }
        ]
      }
    }

Last updated