Docs Portal
Connector Guides
API ReferenceConsole

FSI CMS4 Destination

FSI Logo

The FSI CMS4 Destination connector exports Work Orders inside Mapped With into FSI CMS4 for use in downstream business processes.

Use Cases

Potential use cases include:

  • Connecting multiple ticketing systems - Work Order or other Source connectors that create
  • Work Orders in Mapped can be translated and sent to your FSI CMS4 system

Configuration

This connector requires the following credentials:

CredentialDescription
Username & PasswordThe username and password configured for API access to the FSI CMS4 instance
Site codeThe site code for the FSI CMS4 Instance you are enabling the connector for
Subscription KeyThe subscription key generated from the FSI CMS4 dashboard
SegmentThe FSI segment you want the connector to focus on

Select Buildings

Select which buildings from Mapped will sync with the FSI CMS4 system. This requires that the building in the graph have its location sourced from the FSI CMS4 Source connector.

FSI Mappings

Select the mappings for the Work Order enumerations required of the FSI system from what is available in Mapped. If there are currently no work orders in your graph, then no options will display. Once the graph has Work Orders from a work order source system, selections will become available for the mappings necessary to publish those work orders to the FSI system.

Mapped Concepts

Connector ConceptMapped Type
LocationsBuilding, Floor, Space
Asset CategoriesExactType of Asset
AssetThing or configured ExactType for Asset Category
WorkOrderWorkOrder

Sample Code

You can query Work Orders by the connector's ID and identify related assets and places.

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
{
  workOrders(filter: {connectedDataSourceId: {eq: "CONEVeM6dEGy3v8WWF7RNEutK"}}) {
    id
    name
    description
    dateCreated
    relatesTo {
      ... on Thing {
        id
        name
        exactType
      }
      ... on Building {
        id
        name
        exactType
      }
      ... on Space {
        id
        name
        exactType
      }
    }
  }
}