Querying Standard WELL Alerts

The allAlarmsWithFilters query retrieves all standard WELL alarms for a specific building and provides detailed information for each alarm. With a valid authorization token header, run the below query from your app or API client using the below URL and input parameters.

Query Request

From your app or API client, use the below URL:

URL: https://api.abound.carrier.io/prod-ahs-api/graphql/

Argument: The buildingId is required.

Query Response

The response includes details about alarms for a specific building, including resolved alarms categorized by priority, alarm-related information, and acknowledged alarms by users.

QUERY
                    
                      {
allAlarmsWithFilters(criteria: { buildingId: "2a70a6b0-0b69-469d-a69f-0a818b7f8fa0" }) {
count
list {
aboundId
acknowledgedByUserId
acknowledgment
alarmEndedTime
alarmStartTime
category
criticality
currentValue {
timestamp
value
}
description
deviationFromNorm
externalAssetId
id
isActive
label
name
notes
silence
snooze
type
possibleSolutions
}
}
}
RESPONSE
                    
                      {
"data": {
"allAlarmsWithFilters": {
"count": 4,
"list": [
{
"aboundId": "43d59f68-fe9d-4300-a920-6b3f31c7393d",
"acknowledgedByUserId": null,
"acknowledgment": false,
"alarmEndedTime": 1680635156293,
"alarmStartTime": 1680634869384,
"category": "IAQ",
"criticality": "PRIORITY_2",
"currentValue": {
"timestamp": 1680634868895,
"value": "225"
},
"description": null,
"deviationFromNorm": "6.699999999999989",
"externalAssetId": "",
"id": "002d8d47-e9c1-4a10-b2c1-c006fda1f478",
"isActive": false,
"label": "RESOLVED",
"name": null,
"notes": null,
"silence": null,
"snooze": null,
"type": "Zone Air TVOC Sensor",
"possibleSolutions": [
"Connect with Carrier to discuss options in your building.",
"Schedule a check-up for your HVAC system with your service provider.",
"Minimize exposure to products that contain methylene chloride (e.g. paint strippers, adhesive removers and aerosol spray paints)",
"Check for any open containers of paints, cleaning products, solvents, or other common products that are sources of VOCs.",
"Choose \"low VOC\" and \"no VOC\" paint and cleaning products.",
"Increase ventilation in the space by opening windows or increasing airflow."
]
},
{
"aboundId": "43d59f68-fe9d-4300-a920-6b3f31c7393d",
"acknowledgedByUserId": null,
"acknowledgment": false,
"alarmEndedTime": 1689718110599,
"alarmStartTime": 1689714516459,
"category": "IAQ",
"criticality": "PRIORITY_2",
"currentValue": {
"timestamp": 1689714515747,
"value": "18"
},
"description": null,
"deviationFromNorm": 1,
"externalAssetId": "",
"id": "00719468-fd96-4a03-8b48-b52968ac2a67",
"isActive": false,
"label": "RESOLVED",
"name": null,
"notes": null,
"silence": null,
"snooze": null,
"type": "Zone Air PM2.5 Sensor",
"possibleSolutions": [
"Connect with Carrier to discuss options in your building.",
"Schedule a check-up for your HVAC system with your service provider.",
"Check for PM2.5 sources, including cooking, space heaters, fireplaces, candles, and cigarette smoke.",
"Schedule a check-up for your HVAC system with your service provider."
]
}
]
}
}
}