# Teamup Calendar

![Temup-Logo-RGB.png](https://assets.relyanceuat.xyz/images/docs/9648234406541/9647254934669.png)
Teamup Calendar is a cloud-based group calendar application that developed for groups as well as individuals. It helps by organizing teams, scheduling work, managing resource availability, planning events, and sharing information.

In order to integrate Teamup with Relyance AI you will need an **API Key** and **Token**.

#### In Teamup:

1. Login to your Teamup account.
2. Once logged in, go here: [https://teamup.com/api-keys/request](https://teamup.com/api-keys/request)
3. Enter your registration email and organization name and click **Create API Key**.
4. This will show you your **API Key**, copy it down to be used in Relyance.
5. Go into your calendar and on the left-hand side under the **About** section, click **Edit**.
6. Click **Sharing** in the left-hand navigation menu.
7. On the **Sharing** page there is a table of users and links. One of those links will be **Reader**. Copy the code that starts with *'ks...'* in the Reader section right after the *'teamup.com/...'* link. This will be your access **Token** in Relyance AI.

![Teamup-2.png](https://assets.relyanceuat.xyz/images/docs/9648234406541/9648109736717.png)

![Teamup-3.png](https://assets.relyanceuat.xyz/images/docs/9648234406541/9648109659789.png)

![Teamup-4.png](https://assets.relyanceuat.xyz/images/docs/9648234406541/9648109660173.png)

#### In the Relyance AI application:

1. Login to your Relyance account.
2. Navigate to the **Settings** Menu in the bottom left-hand side.
3. Select **Integrations**.
4. Click on the **Vendor Integration** tab.
5. Find the **Teamup** integration card and click it to open its connections.
6. Under **Authentication Method**, choose **Custom**.
8. Paste the **API Key** and **Token** into their respective fields.

![Teamup-1.png](https://assets.relyanceuat.xyz/images/docs/9648234406541/9648077793549.png)

The **Authentication** step asks for:

- **API Key**: required; held as a secret.
- **Token**: required; held as a secret.

9. Click **Authenticate**.
10. At this point, you should see the following result on the **Vendor** Integrations page:

![Teamup-5.png](https://assets.relyanceuat.xyz/images/docs/9648234406541/10629126254093.png)

11. Congratulations, you are now connected to **Teamup**.

<!-- terraform-examples:begin (generated from the integration catalog; do not hand-edit) -->

## Manage this integration with Terraform

Connections for this integration can be managed as code with the [Relyance Terraform provider](https://registry.terraform.io/providers/Relyance/relyance/latest). Non-secret fields go in `auth.params`; secret fields go in `auth.secrets_wo`, which is write-only — never stored in Terraform state. Rotate secrets by bumping `auth.secrets_wo_version`.

```hcl
resource "relyance_integration_connection" "daysmart_teamup" {
  vendor = "daysmart_teamup"
  name   = "<your connection name>"

  auth = {
    method = "api-key"
    params = {
      data_storage_location = "us"
    }
    # Secret fields are write-only: sent to Relyance, never stored in state.
    secrets_wo = {
      api_key = var.daysmart_teamup_api_key
      token = var.daysmart_teamup_token
    }
    secrets_wo_version = 1
  }

  scans = { "property-inspection" = { enabled = true } }
}
```

<!-- terraform-examples:end -->
