Get information about a specific offer’s post back URL

HTTP method

Endpoint

GET

/v1/offers/{offer_id}/postbacks

Path parameters

Parameter

Description

offer_id

The unique id for the offer.

Response body parameters

Field

Type

Description

url

string

Postback URL.

code

string

Postback URL.

NOTE: url and code get the same information, mainly in the code information based.

Example request

Request GET https://{networkname}.api.offerslook.com/v1/offers/1/postbacks

Request GET http://{networkname}.api.offerslook.com/v1/offers/1/postbacks

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "postback": {
          "url": "http://click.dev.offerslook.com:9080/advBack.php?click_id={click_id}&adv_id=147&amount={amount}&event_id=1",
          "code": "http://click.dev.offerslook.com:9080/advBack.php?click_id={click_id}&adv_id=147&amount={amount}&event_id=1"
        }
      }
    }

Last updated