> ## 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 Space Object

> Learn how the space object groups devices and entrances together so you can assign access to an entire space and grant access more efficiently.

## The space Object

Represents a space that is a logical grouping of devices and entrances. You can assign access to an entire space, thereby making granting access more efficient.

<ResponseExample>
  ```json Space theme={null}
  {
    "created_at": "2025-06-16T16:54:17.946600Z",
    "display_name": "My Space",
    "name": "My Space",
    "space_id": "5afeb047-3277-4102-b8c4-99edf05b91d2",
    "workspace_id": "96bd12f9-6def-4bf4-b517-760417451ae9"
  }
  ```
</ResponseExample>

***

## Properties

<ResponseField name="acs_entrance_count" type="number">
  Number of entrances in the space.
</ResponseField>

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

<ResponseField name="customer_data" type="Object">
  Reservation/stay-related defaults for the space.

  <Expandable title="properties">
    <ResponseField name="address" type="String">
      Postal address for the space.
    </ResponseField>

    <ResponseField name="default_checkin_time" type="String">
      Default check-in time for reservations at the space, as HH:mm or HH:mm:ss.
    </ResponseField>

    <ResponseField name="default_checkout_time" type="String">
      Default check-out time for reservations at the space, as HH:mm or HH:mm:ss.
    </ResponseField>

    <ResponseField name="time_zone" type="String">
      IANA time zone for the space, e.g. America/Los\_Angeles.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="customer_key" type="String">
  Customer key associated with the space.
</ResponseField>

<ResponseField name="device_count" type="number">
  Number of devices in the space.
</ResponseField>

<ResponseField name="display_name" type="String">
  Display name for the space.
</ResponseField>

<ResponseField name="geolocation" type="Object">
  Geographic coordinates (latitude and longitude) of the space.

  <Expandable title="properties">
    <ResponseField name="latitude" type="number">
      Latitude of the space, in decimal degrees.
    </ResponseField>

    <ResponseField name="longitude" type="number">
      Longitude of the space, in decimal degrees.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="name" type="String">
  Name of the space.
</ResponseField>

<ResponseField name="space_id" type="String (UUID)">
  ID of the space.
</ResponseField>

<ResponseField name="space_key" type="String">
  Unique key for the space within the workspace.
</ResponseField>

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