Get a post back of the affiliate

HTTP method

Endpoint

GET

/v1/affiliate_postbacks/{postback_id}

Path parameters

Parameter

Description

postback_id

The unique id for the postback.

Response body parameters

Field

Type

Description

id

integer

The unique id for the affiliate postback.

offer_id

integer

Offer id.

affiliate_id

integer

Affiliate id.

event_id

integer

Event id.

code

string

status

string

The status of the postback.

type

integer

The type of code. Possible Values: 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/v1/affiliate_postbacks/8

Request GET http://{networkname}.api.offerslook.com/v1/affiliate_postbacks/8

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "affiliate_postback": {
          "id": 8,
          "offer_id": 8,
          "affiliate_id": 40,
          "event_id": 1,
          "code": "https: //offerslook.gitbooks.io/api-documentation/content/affiliatepostbacks/affiliatepostbacksmd_md.html",
          "status": "approved",
          "type": 2,
          "create_time": 1467857354,
          "update_time": 1467857354
        }
      }
    }

Last updated