Get post back of the affiliate

Query string parameters

Response body parameters

Example request

Request GET https://{networkname}.api.offerslook.com/v1/affiliate_postbacks?fields=id,offer_id,affiliate_id,code,create_time&sort=-id&filters[id][LESS_THAN]=10

Request GET http://{networkname}.api.offerslook.com/v1/affiliate_postbacks?fields=id,offer_id,affiliate_id,code,create_time&sort=-id&filters[id][LESS_THAN]=10

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "rowset": [
          {
            "id": 9,
            "offer_id": 3,
            "affiliate_id": 9,
            "code": "this is a test!",
            "create_time": 1462586549
          },
          {
            "id": 7,
            "offer_id": 0,
            "affiliate_id": 9,
            "code": "5dd5",
            "create_time": 1462524869
          },
          {
            "id": 6,
            "offer_id": 1,
            "affiliate_id": 9,
            "code": "5dd5",
            "create_time": 1462524461
          },
          {
            "id": 5,
            "offer_id": 0,
            "affiliate_id": 8,
            "code": "dsfe",
            "create_time": 1462441687
          },
          {
            "id": 4,
            "offer_id": 2,
            "affiliate_id": 40,
            "code": "hhhh",
            "create_time": 1462441644
          },
          {
            "id": 1,
            "offer_id": 3,
            "affiliate_id": 3,
            "code": "www.biau.com",
            "create_time": 1461051507
          }
        ],
        "totalPages": 1,
        "totalRows": 6,
        "offset": 1,
        "limit": 20
      }
    }

Last updated