Delete Affiliate Caps

HTTP method

Endpoint

DELETE

/v1/offers/{offer_id}/affiliate_caps/{affiliate_id}

Path parameters

Parameter

Description

offer_id

The unique id for the offer.

affiliate_id

The unique id for the affiliate.

Response body parameters

Field

Type

Description

id

integer

offer_id

integer

affiliate_id

integer

cap_budget

string

cap_click

integer

cap_type

integer

Cap type.

cap_conversion

integer

category

integer

The type of code.

create_time

integer

The Creation time of the code.

Example request

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

Request DELETE http://{networkname}.api.offerslook.com/v1/offers/16/affiliate_caps/8

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "affiliate_cap": [
          {
            "id": 14,
            "affiliate_id": 9,
            "campaign_id": 16,
            "cap_type": 3,
            "cap_click": 0,
            "cap_conversion": 0,
            "cap_budget": "1.23",
            "category": 2,
            "create_time": 1462527832
          }
        ]
      }
    }

Last updated