GET
/msproduct.pv1/compatibility-types/AIDOO/article-typesAvailable Aidoo types depend on the market. The set returned varies with the
app-market header — for example, some markets include AIDOO_PRO_STI or AIDOO_ZIGBEE while others do not. Always make this request per target market instead of hardcoding a list. See Markets & locales.Request
curl --location 'api.airzonecloud.com/msproduct.pv1/compatibility-types/AIDOO/article-types' \
--header 'Content-Type: application/json' \
--header 'apikey: YOUR_API_KEY' \
--header 'app-market: eu' \
--header 'app-locale: en'
const res = await fetch(
"https://api.airzonecloud.com/msproduct.pv1/compatibility-types/AIDOO/article-types",
{
headers: {
"Content-Type": "application/json",
apikey: "YOUR_API_KEY",
"app-market": "eu",
"app-locale": "en",
},
}
);
const data = await res.json();
const aidooTypes = data.body.compatibility_type.article_types;
import requests
url = "https://api.airzonecloud.com/msproduct.pv1/compatibility-types/AIDOO/article-types"
headers = {
"Content-Type": "application/json",
"apikey": "YOUR_API_KEY",
"app-market": "eu",
"app-locale": "en",
}
data = requests.get(url, headers=headers).json()
aidoo_types = data["body"]["compatibility_type"]["article_types"]
Response
object
Example response (app-market: eu)
{
"body": {
"compatibility_type": {
"id": 4,
"az_iso": "AIDOO",
"az_iso_compatibility_product_line_type": "ZONE_CONTROLLER",
"title": "<p>Aidoo</p>",
"description": "<p>Device for the management and integration of an AC unit.</p>",
"slug": "aidoo",
"image": "https://doc.airzonecloud.com/img/compatibility_tools/aidoo.jpg",
"article_types": [
{
"id": 11,
"reference": "AIDOO_WIFI",
"name": "Aidoo Wi-Fi",
"slug": "en-aidoo-wi-fi",
"description": null,
"custom_description_type": "custom",
"image": "https://doc.airzonecloud.com/img/large/AZAI6WSCXXX_3D.jpg",
"compatibility_type_id": 4
},
{
"id": 12,
"reference": "AIDOO_KNX",
"name": "Aidoo KNX DX / Air-to-water",
"slug": "en-aidoo-knx-dx-air-to-water",
"description": null,
"custom_description_type": "custom",
"image": "https://doc.airzonecloud.com/img/large/AZAI6KNXXXX_3D.jpg",
"compatibility_type_id": 4
}
]
}
}
}
Got an Aidoo type
reference? Pass it to List brands to get the compatible manufacturers.