Developer Portal
Connector Guides
API ReferenceConsole

Crestron Fusion

Crestron Fusion logo

The Crestron Fusion edge connector connects the Mapped Gateway on your network to your Fusion server to retrieve room availability information.

Use Cases

Potential use cases include:

  • Meeting room pre-conditioning
  • Meeting room schedule optimization

Configuration

This connector requires the following credentials. Customer success will work with edge customers to securely retrieve the credentials:

CredentialDescription
NTLM Username & PasswordThe connector currently requires an NTLM system to access via username and password

Mapped Concepts

Connector ConceptMapped Type
RoomSpace, Occupancy_Zone (configurable)
Media BridgeDevice
OccupancyOccupancy_Status

Time Series

For continuity with other connectors, the occupancy status point for this connector will register a 0 for unoccupied and 1 for occupied, even though the source data is a boolean.

ValueDefinition
0False
1True

Sample Code

Request Response
Copy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  things(filter: {id: {eq: "THGDKmjZLK77pLgW9z0Y2y8NF"}}) {
    id
    name
    exactType
    points {
      id
      name
      exactType
      series(latest: true) {
        value {
          float64Value
          boolValue
        }
        timestamp
        ingestionTime
      }
    }
    serves {
      ... on Zone {
        id
        name
        exactType
      }
    }
  }
}