Get platform list information

Note: If you want to add the query conditions, there are parameters Path introduced the field can be selected (only one query can be added at a time).

Path parameters

Response body parameters

Example request

Request GET https://{networkname}.api.offerslook.com/aff/v1/dict_platforms?parent_id=3

Request GET http://{networkname}.api.offerslook.com/aff/v1/dict_platforms?parent_id=3

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "dict_platforms": [
          {
            "id": 12,
            "name": "Android",
            "note": "Tablet OS",
            "parent_id": 3
          },
          {
            "id": 13,
            "name": "iOS",
            "note": "Tablet OS",
            "parent_id": 3
          },
          {
            "id": 14,
            "name": "Windows",
            "note": "Tablet OS",
            "parent_id": 3
          }
        ]
      }
    }

Last updated