Get tags of the affiliate

Query string parameters

Response body parameters

Example request

Request GET https://{networkname}.api.offerslook.com/v1/affiliate_tags?sort=+id&offset=1&limit=2

Request GET http://{networkname}.api.offerslook.com/v1/affiliate_tags?sort=+id&offset=1&limit=2

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "rowset": [
          {
            "id": 19,
            "name": "tea"
          },
          {
            "id": 20,
            "name": "apple"
          }
        ],
        "totalPages": 11,
        "totalRows": 22,
        "offset": 1,
        "limit": 2
      }
    }

Last updated