---
title: "Create place"
method: POST
path: "/places"
tags: ["Places"]
---

# Create place

`POST /places`

## Request body

- object
  - `place` object, required
    - `name` string, required — The name of the place
    - `description` string, nullable — The description of the place
    - `address` string, required — The address of the place
    - `latitude` number, float, nullable — The latitude of the place
    - `longitude` number, float, nullable — The longitude of the place
    - `image` string, uri, nullable — The URI to the image of the place. The image can be uploaded by first using the <a href="/operations/createSignedUploadURL">Signed upload url endpoint</a> to generate a signed URL and then using the URL to upload the image.
    - `time_zone` string, nullable — The time zone of the place. It should be a <a href="https://en.wikipedia.org/wiki/Tz_database#Names_of_time_zones"> valid IANA time zone name.</a>

## Response `200`

OK

- union
  - object
    - `id` integer, required — The ID of the place
    - `resource_type` 'Place', required — The resource type of the place
    - `name` string, required — The name of the place
    - `description` string, nullable, required — The description of the place
    - `address` string, required — The address of the place
    - `latitude` number, float, nullable, required — The latitude of the place
    - `longitude` number, float, nullable, required — The longitude of the place
    - `image` string, uri, nullable, required — The URI to the image of the place. The image can be uploaded by first using the <a href="/operations/createSignedUploadURL">Signed upload url endpoint</a> to generate a signed URL and then using the URL to upload the image.
    - `time_zone` string, nullable, required — The time zone of the place. It should be a <a href="https://en.wikipedia.org/wiki/Tz_database#Names_of_time_zones"> valid IANA time zone name.</a>
    - `color` string, nullable, required
    - `logo` string, nullable, required
  - object
    - `id` integer, required — The ID of the place
    - `resource_type` 'Place', required — The resource type of the place
    - `name` string, required — The name of the place
    - `description` string, nullable, required — The description of the place
    - `created_at` string, date-time, required — When the place was created
    - `updated_at` string, date-time, required — When the place was updated
    - `latitude` number, float, nullable, required — The latitude of the place
    - `longitude` number, float, nullable, required — The longitude of the place
    - `address` string, required — The address of the place
    - `image` string, uri, nullable, required — The URI to the image of the place. The image can be uploaded by first using the <a href="/operations/createSignedUploadURL">Signed upload url endpoint</a> to generate a signed URL and then using the URL to upload the image.
    - `time_zone` string, nullable, required — The time zone of the place. It should be a <a href="https://en.wikipedia.org/wiki/Tz_database#Names_of_time_zones"> valid IANA time zone name.</a>
    - `tz_time_zone` string, nullable, required — The time zone of the place
    - `locks_count` integer, required — The number of locks in the place
    - `integrations_count` integer, required — The number of integrations in the place
    - `locked_down` boolean, required — Whether the place is locked down. When locked down the place is locked down for everyone.
    - `locked_down_since` string, date-time, nullable, required — Since when the place has been locked down.
    - `occupancy_rate` number, float, nullable, required — What is the occupancy rate for an associated capacity record.
    - `favorite` boolean — Whether the place is marked as a favorite by the user. Only shown if requested.
    - `organization_id` integer, required — The organization ID of the place
    - `organization` object, required — The organization of the place
      - `id` integer, required — The ID of the organization
      - `resource_type` 'Organization', required — The resource type of the organization
      - `name` string, required — The name of the organization
      - `domain` string, required — The domain of the organization.
    - `color` string, nullable, required
    - `logo` string, nullable, required
    - `user_id` unknown, required
    - `members_count` integer, required

## Other responses

- `401` — Unauthorized
- `403` — Forbidden
- `422` — Unprocessable Content

---

[API](https://skmtc.dev/kisi/apis/kisi-api.md) · [All operations](https://skmtc.dev/kisi/apis/kisi-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kisi/kisi-api/revisions/998700ffff5a/schema)
