Get a Postback by id
HTTP method
Endpoint
GET
/aff/v1/offer_postbacks/{postback_id}
Path parameters
Parameter
Description
postback_id
The unique id for the affiliate postback.
Response body parameters
Field
Type
Description
id
integer
Affiliate postback id.
offer_id
integer
Offer id.
affiliate_id
integer
Affiliaite id
event_id
integer
Event id.
code
string
Code.
status
string
Status of Postback. Pending; Approved; rejected
type
string
Type of code. 0: Global Postback 1:Image Pixel; 2:Postback URL; 3:HTML Pixel
create_time
integer
Create time.
update_time
integer
Update time.
Example request
Request GET https://{networkname}.api.offerslook.com/aff/v1/offer_postbacks/51
Request GET http://{networkname}.api.offerslook.com/aff/v1/offer_postbacks/51
Example response
{
"code": 0,
"message": "Success",
"data": {
"affiliate_postback": {
"id": 51,
"offer_id": 5,
"affiliate_id": 161,
"event_id": 1,
"type": 2,
"code": "http://offerslook.com",
"status": "pending",
"create_time": 1467777333,
"update_time": 1467777333
}
}
}
Last updated
Was this helpful?