---
title: "Create guest"
method: POST
path: "/guests"
tags: ["Guests"]
---

# Create guest

`POST /guests`

## Request body

- object
  - `guest` object, required
    - `name` string, required — The name of the guest
    - `email` string, email, nullable — The email of the guest.
    - `phone_number` string, nullable — The phone number of the guest. Only US, Canadian and Puerto Rican numbers in the format +11234567890 (E.164) are accepted.

## Response `200`

OK

- object
  - `id` integer, required — The ID of the guest
  - `resource_type` 'Guest', required — The resource type of the guest
  - `name` string, required — The name of the guest
  - `email` string, email, nullable, required — The email of the guest.
  - `phone_number` string, nullable, required — The phone number of the guest. Only US, Canadian and Puerto Rican numbers in the format +11234567890 (E.164) are accepted.
  - `created_at` string, date-time, required — When the guest was created
  - `updated_at` string, date-time, required — When the guest was updated

## 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)
