---
title: "Create a new PTO request"
method: POST
path: "/PtoRequests"
tags: ["PtoRequests"]
---

# Create a new PTO request

`POST /PtoRequests`

## Request body

- CreatePtoRequestDto
  - `userId` string, nullable — Optional: Create PTO for a specific user (manager use). If not provided, uses current user.
  - `type` integer
  - `startDate` string
  - `endDate` string
  - `totalHours` union
    - number, double
    - string, double
  - `notes` string, nullable
  - `autoApprove` boolean — Optional: If true, automatically approve the PTO request (manager use)

## Response `201`

Created

- PtoRequestResponseDto
  - `id` string
  - `userId` string
  - `user` UserSummaryDto
    - `id` string
    - `email` string
    - `firstName` string, nullable
    - `lastName` string, nullable
    - `displayName` string, nullable
    - `type` string
    - `roleId` string, nullable
    - `roleName` string, nullable
  - `type` integer
  - `startDate` string
  - `endDate` string
  - `totalHours` union
    - number, double
    - string, double
  - `notes` string, nullable
  - `status` integer
  - `reviewedByUserId` string, nullable
  - `reviewedByUser` UserSummaryDto
    - `id` string
    - `email` string
    - `firstName` string, nullable
    - `lastName` string, nullable
    - `displayName` string, nullable
    - `type` string
    - `roleId` string, nullable
    - `roleName` string, nullable
  - `reviewedAt` string, date-time, nullable
  - `reviewNotes` string, nullable
  - `createdAt` string, date-time
  - `updatedAt` string, date-time

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1.md) · [All operations](https://skmtc.net/clinicos/apis/pawthosx-business-api-v1/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clinicos/pawthosx-business-api-v1/revisions/a905bde4e796/schema)
