Disruptive Technologies is an IoT system that offers location and occupancy services, as well as other sensor data such as Temperature, Humidity, and CO2.
Potential use cases include:
This connector allows you to select from either username & password, or OAuth 2.0 credential flow offered by Disruptive Technologies' API.
Credential | Description |
---|---|
Username & Password | Utilize the username and password provided by Disruptive Technologies for use with integrations |
OAuth 2.0 | Provide a client ID and client secret to authenticate with Disruptive Technologies' API |
Connector Concept | Mapped Type |
---|---|
Project | Building |
DT Device | Device |
Humidity, Temmperature, CO2 and Motion Events | Relative_Humidity_Sensor, Air_Temperature_Sensor, CO2_Level_Sensor, Occupancy_Sensor, Motion_Sensor |
Here's an example showing how to retrieve the latest temperature for a Disruptive Technologies sensor; we included the unit field so you can tell if the temperature is being recorded as Celsius or Fahrenheit:
Request ResponseCopy1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{ points(filter: {type: {eq: "Temperature_Sensor"}}) { name exactType unit { name } series(latest: true) { timestamp value { float64Value } } } }