@seamapi/http - v2.1.0
    Preparing search index...

    Type Alias SpacesCreateParameters

    type SpacesCreateParameters = {
        acs_entrance_ids?: string[];
        connected_account_ids?: string[];
        customer_data?: {
            address?: string;
            default_checkin_time?: string;
            default_checkout_time?: string;
            time_zone?: string;
        };
        customer_key?: string;
        device_ids?: string[];
        name: string;
        space_key?: string;
    }
    Index
    acs_entrance_ids?: string[]

    IDs of the entrances that you want to add to the new space.

    connected_account_ids?: string[]

    IDs of connected accounts to associate with the new space. Persisted on seam.location_third_party_account so the UI can show which provider account(s) a space came from.

    customer_data?: {
        address?: string;
        default_checkin_time?: string;
        default_checkout_time?: string;
        time_zone?: string;
    }

    Reservation/stay-related defaults for the space.

    Type Declaration

    • Optionaladdress?: string

      Postal address for the space.

    • Optionaldefault_checkin_time?: string

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

    • Optionaldefault_checkout_time?: string

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

    • Optionaltime_zone?: string

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

    customer_key?: string

    Customer key for which you want to create the space.

    device_ids?: string[]

    IDs of the devices that you want to add to the new space.

    name: string

    Name of the space that you want to create.

    space_key?: string

    Unique key for the space within the workspace.