> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.kodelabs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Cove

> Connect Cove to KODE OS for work orders data

> Connect Cove to KODE OS for work orders data integration

## Overview

Use this integration to connect Cove to KODE OS for work order lifecycle data. You can collect sensor and non-sensor data with hybrid historical collection, keep work orders synchronized through the connector, and use supported actions from KODE OS.

| Property            | Value                |
| ------------------- | -------------------- |
| **System Type**     | Work Orders          |
| **Communication**   | REST                 |
| **Collection**      | Hybrid (Pull + Push) |
| **Collection Mode** | HISTORICAL           |
| **Actions**         | Supported            |

## Supported Capabilities

* Collect Sensor Data
* Collect Non-Sensor Data

## Prerequisites

* An active account with Cove and access to their API or developer portal
* KODE OS environment with access to Data Sources

## Configure Connector in KODE OS

1. Navigate to **Data Sources** in your building
2. Click **API Catalog** and search for **Cove**
3. Click **+ Add Datasource**
4. Complete the three-page setup flow using the credential prerequisites for this integration

<Note>
  Connector field metadata is not exposed in code for this integration. Configure the connector using your standard credentials and endpoint details shown in the prerequisites and vendor onboarding references.
</Note>

## Devices and Points

| Point         | Display Name |
| ------------- | ------------ |
| `description` | description  |
| `dueDate`     | dueDate      |
| `floorId`     | floorId      |
| `suiteId`     | suiteId      |
| `ticketType`  | ticketType   |
| `categoryId`  | categoryId   |

## What Data You Get

### Work Orders

Maintenance and service requests including title, description, status, priority, assignee, due dates, vendor response, resolution details, and cost estimates

KODE OS maps Cove data to these standard fields:

| KODE Field        | Source Field              | Notes                |
| ----------------- | ------------------------- | -------------------- |
| **id**            | `id`                      | --                   |
| **title**         | `workOrderCategory.title` | transformed          |
| **description**   | `description`             | --                   |
| **status**        | `status`                  | --                   |
| **category**      | `ticketType`              | --                   |
| **floor**         | `floor.name`              | transformed          |
| **createdBy**     | `createdBy.email`         | transformed          |
| **assignedTo**    | `assignee.id`             | transformed          |
| **createdAt**     | `createdAt`               | transformed          |
| **updatedAt**     | `updatedAt`               | transformed          |
| **dueDate**       | `requiredDueAt`           | transformed          |
| **completedAt**   | `completedAt`             | transformed          |
| **duration**      | `hoursLogged`             | --                   |
| **estimatedCost** | `totalCharge`             | --                   |
| **customFields**  | `(custom fields)`         | custom fields object |

### Polling Schedule

* **WorkOrder** -- Default polling: 15 minutes (min: 15 minutes, max: 1 days)

For more details on collection modes, see the [Data Collection guide](/products/integrations/capabilities/data-collection).

## Available Actions

### Create Work Order

**Type:** Write

Creates a new work order in Cove

| Field           | Type       | Required | Input     | Options / Default                                         |
| --------------- | ---------- | -------- | --------- | --------------------------------------------------------- |
| **Description** | STRING     | Yes      | Text Area | --                                                        |
| **Due Date**    | DATE\_TIME | No       | Text Box  | --                                                        |
| **Category**    | STRING     | Yes      | Drop Down | Dynamic: fetched from Cove categories API                 |
| **Floor**       | STRING     | Yes      | Drop Down | Dynamic: fetched from Cove floors API                     |
| **Suite**       | STRING     | Yes      | Drop Down | Dynamic: fetched from Cove suites API (filtered by floor) |
| **Ticket Type** | STRING     | No       | Text Box  | --                                                        |

#### Example Request

```json theme={null}
{
  "description": "example-value",
  "categoryId": "12345",
  "floorId": "12345",
  "suiteId": "12345",
  "dueDate": "2026-03-29T10:00:00Z",
  "ticketType": "example-value"
}
```

#### Expected Result

* KODE OS sends the action to the external API using the configured connector credentials
* The external system returns success (typically HTTP 2xx) and processes the requested operation

For more details on how actions work, see the [Actions guide](/products/integrations/capabilities/actions).

## Use Cases

Once connected, this integration enables you to:

* Centralize maintenance requests and work order status from facility management systems
* Create and update work orders directly from KODE OS when issues are detected
* Track maintenance KPIs including response time, completion rate, and cost

## Troubleshooting

<AccordionGroup>
  <Accordion title="Authentication or connection error">
    Verify that the credentials are correct and have not expired. Check that the URL is reachable from the KODE OS environment. Double-check all credential fields match the values from the Cove platform.
  </Accordion>

  <Accordion title="Data collection stops or gaps appear">
    Check the connector status on the Data Sources page. If the status shows an error, review the error logs on the connector detail page. Common causes include expired credentials, network changes, or rate limiting by the Cove API.
  </Accordion>
</AccordionGroup>
