Get Affiliate Caps
HTTP method
Endpoint
GET
/v1/offers/{offer_id}/affiliate_caps
Path parameters
Parameter
Description
offer_id
The unique id for the offer.
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 GET https://{networkname}.api.offerslook.com/v1/offers/16/affiliate_caps
Request GET http://{networkname}.api.offerslook.com/v1/offers/16/affiliate_caps
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
},
{
"id": 17,
"affiliate_id": 8,
"campaign_id": 16,
"cap_type": 5,
"cap_click": 2,
"cap_conversion": 0,
"cap_budget": "0",
"category": 2,
"create_time": 1462591223
}
]
}
}
Last updated
Was this helpful?