---
title: "Create event type"
method: POST
path: "/v1/event-types"
tags: ["Event Types"]
---

# Create event type

`POST /v1/event-types`

Create a new assignable assignment type. The `slug` is used in the public manifest link (`/assign/:username/:slug`). Set `requires_confirmation: true` to put new bookings in a **pending** state — you will receive an email with one-click confirm/decline links, and the attendee is notified their request is under review.

## Request body

- object
  - `title` string, required
  - `slug` string
  - `description` string
  - `appointment_label` string
  - `duration_minutes` integer, required
  - `buffer_before` integer
  - `buffer_after` integer
  - `min_notice_minutes` integer
  - `max_bookings_per_day` integer
  - `location` string
  - `location_type` 'video' | 'phone' | 'in_person' | 'other'
  - `webhook_url` string — POST this URL when a booking is created for this event type
  - `custom_fields` string — JSON array of custom field definitions shown on the booking form
  - `requires_confirmation` boolean — If true, new bookings are held as `pending` until the host confirms or declines via email link or dashboard

## Response `201`

Default Response

- object
  - `Id` integer
  - `title` string
  - `slug` string
  - `description` string
  - `appointment_label` string — Custom noun shown to attendees — "appointment", "inspection", "session", etc.
  - `duration_minutes` integer
  - `buffer_before` integer
  - `buffer_after` integer
  - `min_notice_minutes` integer — Minimum advance notice required to book (minutes)
  - `max_bookings_per_day` integer
  - `location` string
  - `location_type` 'video' | 'phone' | 'in_person' | 'other'
  - `webhook_url` string
  - `custom_fields` string — JSON array of custom field definitions
  - `requires_confirmation` boolean — Require host to confirm each booking before it is finalized
  - `active` boolean

---

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