Get all advertisers

Get all advertisers in a network.

Query string parameters

Response body parameters

Example request

Request GET https://{networkname}.api.offerslook.com/v1/advertisers?limit=4&filters[status][EQUAL_TO]=active&sort=-id,+name&fields=id,name,status,phone

Request GET http://{networkname}.api.offerslook.com/v1/advertisers?limit=4&filters[status][EQUAL_TO]=active&sort=-id,+name&fields=id,name,status,phone

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "rowset": [
          {
            "id": 4853,
            "status": "active",
            "phone": ""
          },
          {
            "id": 4849,
            "status": "active",
            "phone": ""
          },
          {
            "id": 4822,
            "status": "active",
            "phone": "21155571"
          },
          {
            "id": 696,
            "status": "active",
            "phone": "11122233333"
          }
        ],
        "totalPages": 3,
        "totalRows": 9,
        "offset": 1,
        "limit": 4
      }
    }

Last updated