Get offer’s post back URL by event id

HTTP method

Endpoint

GET

/v1/offers/{offer_id}/offer_events/{event_id}/postbacks

Path parameters

Parameter

Description

offer_id

The unique id for the offer.

event_id

The unique id for the offer event.

Response body parameters

Field

Type

Description

url

string

Postback URL. [Deprecated]

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/offer_events/3/postbacks

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

Example response

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

Last updated