Create a new post back of the affiliate

Note:offer_id = 0, representing the choice of offers all.

Adding a new parameter, event_id, in Affiliate Postback module method. It is compatible with last version, and the default value is 1.

Request body parameters

Tracking Parameters

Response body parameters

Example request

Request POST https://{networkname}.api.offerslook.com/v1/affiliate_postbacks

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

    {
      "affiliate_id": 40,
      "offer_id": 8,
      "event_id": 1,
      "type": 2,
      "code": "https://offerslook.gitbooks.io/api-documentation/content/affiliatepostbacks/affiliatepostbacksmd_md.html"
    }

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