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

# Manage units

> List, create, edit, and delete the bookable units — rooms, apartments, or villas — within a property.

export const AppLink = ({to, children}) => <a href={`https://app.superhost.world/link/${to}`}>{children}</a>;

A unit is a bookable space within a property — a room, apartment, or villa.
Units are what guests reserve and what your reservations and tasks are tied to.
Manage them from the property's **<AppLink to="units">Units</AppLink>**
settings.

<Note>
  Units live under property settings, which are role-gated: only Managers and
  other users with settings access can manage them. See
  [Roles & permissions](/team/roles-and-permissions).
</Note>

## View your units

Open **<AppLink to="units">Units</AppLink>** from the property settings to see
every unit in the property.
Each row shows the unit's code and name, its type, and how many guests it
holds. Use the search box to find a unit by code, name, or type, and sort the
list with the sort control. Tap a unit to open it.

## Create a unit

<Steps>
  <Step title="Start a new unit">
    On the **Units** screen, tap **Create unit**.
  </Step>

  <Step title="Name the unit">
    Enter the **Name**, such as `Room 101` or `Apartment A`.
  </Step>

  <Step title="Set the short code">
    **Short code** is a compact label for calendars and task lists, such as
    `101` or `APH-SV`. It auto-fills from the name; type to override it, or
    clear the field to go back to auto-fill.
  </Step>

  <Step title="Choose the unit type">
    Pick a **Unit type** — Single, Double, Twin, Triple, Quadruple, Studio,
    Suite, Apartment, Family, or Villa.
  </Step>

  <Step title="Set the occupancy">
    Open **Occupancy** to set **Max guests**, and optionally **Max adults**,
    **Max children**, and **Children (payable rate)**.
  </Step>

  <Step title="Add other details (optional)">
    You can also set the **Size**, **Smoking policy**, **Cots and extra beds**,
    and **Amenities**.
  </Step>

  <Step title="Save the unit">
    Tap **Save** to add the unit to the property.
  </Step>
</Steps>

## Edit a unit

Tap a unit in the **Units** list to open it. Change any of its details and tap
**Save**, or tap **Cancel** to discard your changes.

<Tip>
  To create a near-identical unit, open an existing one and tap **Duplicate
  unit**. Superhost copies its details into a new unit you can then adjust. The
  copy keeps the original's **Short code**, so change it on the new unit to keep
  codes unique.
</Tip>

## Delete a unit

On a unit's edit screen, tap **Delete unit** at the bottom and confirm.

<Warning>
  Deleting a unit is permanent and can't be undone. Bookings linked to that unit
  may need to be updated afterward.
</Warning>

## Related

<CardGroup cols={2}>
  <Card title="Property details & settings" icon="building" href="/properties/property-details">
    Edit the property the units belong to.
  </Card>

  <Card title="View a reservation" icon="calendar-plus" href="/reservations/view-a-reservation">
    See a booking's guests, stay details, and tasks.
  </Card>
</CardGroup>
