Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
561 changes: 561 additions & 0 deletions docs/api-reference/_blueprint.json

Large diffs are not rendered by default.

96 changes: 96 additions & 0 deletions docs/api-reference/customers/push_data.md
Original file line number Diff line number Diff line change
Expand Up @@ -1052,6 +1052,66 @@ Your unique identifier for the site.

List of general spaces or areas.

<details>

<summary><b><code>customer_data</code></b> <i>Object</i></summary>

Reservation/stay-related defaults for the space (time zone, default check-in/out times, address).

</details>

---



<details>

<summary><b><code>customer_data.address</code></b> <i>String</i></summary>

Postal address for the space.

</details>

---



<details>

<summary><b><code>customer_data.default_checkin_time</code></b> <i>String</i></summary>

Default check-in time for reservations at the space, as HH:mm or HH:mm:ss.

</details>

---



<details>

<summary><b><code>customer_data.default_checkout_time</code></b> <i>String</i></summary>

Default check-out time for reservations at the space, as HH:mm or HH:mm:ss.

</details>

---



<details>

<summary><b><code>customer_data.time_zone</code></b> <i>String</i></summary>

IANA time zone for the space, e.g. America/Los_Angeles.

</details>

---



<details>

<summary><b><code>duration_minutes</code></b> <i>Number</i></summary>
Expand All @@ -1064,6 +1124,42 @@ Default duration of this space in minutes, when the space represents a fixed-len



<details>

<summary><b><code>geolocation</code></b> <i>Object</i></summary>

Geographic coordinates (latitude and longitude) of the space.

</details>

---



<details>

<summary><b><code>geolocation.latitude</code></b> <i>Number</i></summary>

Latitude of the space, in decimal degrees.

</details>

---



<details>

<summary><b><code>geolocation.longitude</code></b> <i>Number</i></summary>

Longitude of the space, in decimal degrees.

</details>

---



<details>

<summary><b><code>name</code></b> <i>String</i></summary>
Expand Down
25 changes: 25 additions & 0 deletions docs/api-reference/spaces/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ Reservation/stay-related defaults for the space.
<details>
<summary>Child Properties</summary>

- <strong><code>address</code></strong> <i>String</i>

Postal address for the space.

- <strong><code>default_checkin_time</code></strong> <i>String</i>

Default check-in time for reservations at the space, as HH:mm or HH:mm:ss.
Expand Down Expand Up @@ -97,6 +101,27 @@ Display name for the space.



---

**`geolocation`** *Object*

Geographic coordinates (latitude and longitude) of the space.



<details>
<summary>Child Properties</summary>

- <strong><code>latitude</code></strong> <i>Number</i>

Latitude of the space, in decimal degrees.

- <strong><code>longitude</code></strong> <i>Number</i>

Longitude of the space, in decimal degrees.

</details>

---

**`name`** *String*
Expand Down
12 changes: 12 additions & 0 deletions docs/api-reference/spaces/create.md
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,18 @@ IDs of connected accounts to associate with the new space. Persisted on seam.loc

Reservation/stay-related defaults for the space.

<details>

<summary><b><code>address</code></b> <i>String</i></summary>

Postal address for the space.

</details>

---



<details>

<summary><b><code>default_checkin_time</code></b> <i>String</i></summary>
Expand Down
12 changes: 12 additions & 0 deletions docs/api-reference/spaces/update.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,18 @@ IDs of the entrances that you want to set for the space. If specified, this will

Reservation/stay-related defaults for the space. Only the keys you provide are updated; omit a key to leave it unchanged. Pass null on a key to clear it.

<details>

<summary><b><code>address</code></b> <i>String</i></summary>

Postal address for the space.

</details>

---



<details>

<summary><b><code>default_checkin_time</code></b> <i>String</i></summary>
Expand Down
15 changes: 15 additions & 0 deletions mintlify-docs/api/spaces/object.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ Represents a space that is a logical grouping of devices and entrances. You can
<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>
Expand All @@ -60,6 +63,18 @@ Represents a space that is a logical grouping of devices and entrances. You can
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>
Expand Down
Loading
Loading