Get all application information

HTTP method

Endpoint

GET

/v1/offer_applications

Query string parameters

Conditions

Parameters

Type

Description

Offset

offset

offset

Check page scale.

Limit

limit

limit

The number of date displays in each page. Maximum = 1000

Sort

sort

sort

Ranking according to the specified field ascending "+", or descending "-".

Filters

filters

filter

Query requirements of Specify field.

EQUAL_TO NOT_EQUAL_TO LESS_THAN LESS_THAN_OR_EQUAL_TO GREATER_THAN GREATER_THAN_OR_EQUAL_TO CONTAINS NOT_CONTAINS NULL NOT_NULL

Fields

fields

field

You can choose the field of the query (the result of the query is in line with the selected field).

id

integer

A string that uniquely identifies this application

stauts

string

The status of the this application

offer_id

integer

Offer id.

affiliate_id

integer

Affiliate id.

apply_time

inteter

The apply time of this application

accept_time

integer

The accept time of this application

Response body parameters

Field

Type

Description

id

integer

A string that uniquely identifies this category

offer_id

integer

Offer id.

affiliate_id

integer

Affiliate id.

apply_time

inteter

The apply time of this application

accept_time

integer

The accept time of this application

totalPages

integer

The list of data pages (associated with your limit).

totalRows

integer

Total number of available data.

offset

integer

The number of records from a collection to skip. Iterating over large collections with this parameter can be slow.

limit

integer

The number of data displayed on one page

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