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

# Create empty vacation calendar

> Creates an empty vacation calendar for a specific employee and year. Days off should be added using POST /vacation-calendars/days-off endpoint.



## OpenAPI

````yaml POST /schedule/v1/vacation-calendars/create
openapi: 3.0.0
info:
  description: ''
  version: 3.0.0
  title: Sesame Public API
servers:
  - url: https://api-{region}.sesametime.com
    variables:
      region:
        default: eu1
security: []
tags: []
paths:
  /schedule/v1/vacation-calendars/create:
    post:
      tags:
        - Vacation Calendars
      summary: Create empty vacation calendar
      description: >-
        Creates an empty vacation calendar for a specific employee and year.
        Days off should be added using POST /vacation-calendars/days-off
        endpoint.
      operationId: CreateEmptyVacationCalendar
      requestBody:
        description: Employee, vacation type and year information
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - employeeId
                - vacationTypeId
                - year
              properties:
                employeeId:
                  type: string
                  format: uuid
                  description: Employee UUID
                  example: eb5a136f-dc38-46eb-bf55-d2e2bf86903e
                vacationTypeId:
                  type: string
                  format: uuid
                  description: Vacation type configuration UUID
                  example: f47ac10b-58cc-4372-a567-0e02b2c3d479
                year:
                  type: integer
                  description: Calendar year
                  example: 2024
      responses:
        '201':
          description: Empty vacation calendar created successfully
        '400':
          description: Validation error
        '404':
          description: Employee or vacation type not found
      security:
        - Bearer: []
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT

````