Tariffs¶
me/offer_targets¶
Login required | Pagination |
---|---|
Yes | No |
User's list of tariffs.
Example¶
requests.get('https://advgame.com/api/v1/me/offer_targets/')
{
"_meta": {
"count": 3,
"limit": 100,
"offset": 0,
"next": null,
"previous": null
},
"results": [
{
"id": 1,
"name": "offer-target-0",
"hold_ttl": 30,
"type": "LEAD",
"offer_id": 1
},
{
"id": 2,
"name": "offer-target-1",
"hold_ttl": 15,
"type": "LEAD",
"offer_id": 2
},
{
"id": 16,
"name": "offer-target-15",
"hold_ttl": 10,
"type": "LEAD",
"offer_id": 1
}
]
}