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

# The Customer Object

> Learn how the customer_portal object provides a hosted, customizable interface for managing device access that you can share or embed in your product.

## The customer\_portal Object

Represents a Customer Portal. Customer Portal is a hosted, customizable interface for managing device access. It enables you to embed secure, pre-authenticated access flows into your product—either by sharing a link with users or embedding a view in an iframe.

With Customer Portal, you no longer need to build out frontend experiences for physical access, thermostats, and sensors. Instead, you can ship enterprise-grade access control experiences in a fraction of the time, while maintaining your product's branding and user experience.

Seam hosts these flows, handling everything from account connection and device mapping to full-featured device control.

<ResponseExample>
  ```json Customer Portal theme={null}
  {
    "created_at": "2025-06-16T16:54:17.946594Z",
    "customer_key": "My Company",
    "expires_at": "2025-06-17T16:54:17.946594Z",
    "url": "https://se.am/1234",
    "workspace_id": "67c58f1f-f148-4415-a63c-dc6c145c6b91"
  }
  ```
</ResponseExample>

***

## Properties

<ResponseField name="created_at" type="String (ISO 8601)">
  Date and time at which the customer portal link was created.
</ResponseField>

<ResponseField name="customer_key" type="String">
  Customer key for the customer portal.
</ResponseField>

<ResponseField name="expires_at" type="String (ISO 8601)">
  Date and time at which the customer portal link expires.
</ResponseField>

<ResponseField name="url" type="String">
  URL for the customer portal.
</ResponseField>

<ResponseField name="workspace_id" type="String (UUID)">
  ID of the [workspace](https://docs.seam.co/core-concepts/workspaces) associated with the customer portal.
</ResponseField>
