Developer Portal
Connector Guides
API ReferenceConsole

Disruptive Technologies

DisruptiveLogo

Disruptive Technologies is an IoT system that offers location and occupancy services, as well as other sensor data such as Temperature, Humidity, and CO2.

Use Cases

Potential use cases include:

  • Track device humidity and temperature across your building
  • Track CO2 levels across your building
  • Track space usage through detection of motion events

Configuration

This connector allows you to select from either username & password, or OAuth 2.0 credential flow offered by Disruptive Technologies' API.

CredentialDescription
Username & PasswordUtilize the username and password provided by Disruptive Technologies for use with integrations
OAuth 2.0Provide a client ID and client secret to authenticate with Disruptive Technologies' API

Mapped Concepts

Connector ConceptMapped Type
ProjectBuilding
DT DeviceDevice
Humidity, Temmperature, CO2 and Motion EventsRelative_Humidity_Sensor, Air_Temperature_Sensor, CO2_Level_Sensor, Occupancy_Sensor, Motion_Sensor

Sample Code

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 Response
Copy
1
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
      }
    }
  }
}