Get all application information

Query string parameters

Response body parameters

Example request

Request GET https://{networkname}.api.offerslook.com/v1/offer_applications?sort=+id&offset=2&limit=8&fields=affiliate_id,offer_id,status&filters[id][LESS_THAN]=2200

Request GET http://{networkname}.api.offerslook.com/v1/offer_applications?sort=+id&offset=2&limit=8&fields=affiliate_id,offer_id,status&filters[id][LESS_THAN]=2200

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "rowset": [
          {
            "id": 2090,
            "affiliate_id": 688,
            "status": "pending",
            "offer_id": 2705
          },
          {
            "id": 2092,
            "affiliate_id": 688,
            "status": "rejected",
            "offer_id": 52
          },
          {
            "id": 2112,
            "affiliate_id": 688,
            "status": "rejected",
            "offer_id": 2720
          },
          {
            "id": 2115,
            "affiliate_id": 40,
            "status": "pending",
            "offer_id": 2720
          },
          {
            "id": 2117,
            "affiliate_id": 688,
            "status": "approved",
            "offer_id": 2721
          },
          {
            "id": 2121,
            "affiliate_id": 4824,
            "status": "pending",
            "offer_id": 2722
          },
          {
            "id": 2122,
            "affiliate_id": 4824,
            "status": "approved",
            "offer_id": 2720
          },
          {
            "id": 2123,
            "affiliate_id": 4824,
            "status": "approved",
            "offer_id": 17
          }
        ],
        "totalPages": 4,
        "totalRows": 27,
        "offset": 2,
        "limit": 8
      }
    }

Last updated