get sub affiliate approval
HTTP method
Endpoint
GET
/aff/v1/sub_affiliate_approval
Response body parameters
Field
Type
Description
id
integer
The id from API database backend.
offer_id
string
offer ID or All Offers
type
integer
1 means source ID 2 means aff_sub1 3 means aff_sub2 4 means aff_sub3 5 means aff_sub4 6 means aff_sub5
value
string
the exact sub affiliate value
list_type
integer
1 means Blacklist 2 means Whitelist
Example request
Request GET https://{networkname}.api.offerslook.com/aff/v1/sub_affiliate_approval
Request GET http://{networkname}.api.offerslook.com/aff/v1/sub_affiliate_approval
Example response
{
"code": 0,
"message": "Success",
"data": {
"rowset": [
{
"id": 40,
"offer_id": "All Offers",
"type": 2,
"value": "aff_sub1",
"list_type": 2
},
{
"id": 39,
"offer_id": "All Offers",
"type": 6,
"value": "aff_sub5",
"list_type": 1
},
{
"id": 42,
"offer_id": "19650",
"type": 4,
"value": "aff_sub3",
"list_type": 2
},
{
"id": 37,
"offer_id": "526107",
"type": 1,
"value": "wqw",
"list_type": 1
}
],
"totalPages": 1,
"totalRows": 4,
"offset": 1,
"limit": 20
}
}
Last updated
Was this helpful?