---
title: "Create Specific User Availability"
method: POST
path: "/calendars/users/{user_id}/availability"
tags: ["Calendar"]
---

# Create Specific User Availability

`POST /calendars/users/{user_id}/availability`

Create a new availability rule for a specific user.

- **user_id**: The ID of the user to create availability for
- **day_of_week**: Day of the week (monday, tuesday, etc.)
- **start_time**: Start time (e.g., "09:00:00")
- **end_time**: End time (e.g., "17:00:00")

Multiple availability rules can exist for the same day to represent split schedules.
Only accessible by users in the same customer.

## Path parameters

- `user_id` string, uuid, required

## Request body

- CreateAvailabilityRequest — Request model for creating availability
  - `day_of_week` 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday' | 'sunday', required — Day of week enum
  - `start_time` string, time, required
  - `end_time` string, time, required

## Response `201`

Successful Response

- AvailabilityResponse — Response model for user availability
  - `availability_id` string, uuid, required
  - `user_id` string, uuid, required
  - `day_of_week` 'monday' | 'tuesday' | 'wednesday' | 'thursday' | 'friday' | 'saturday' | 'sunday', required — Day of week enum
  - `start_time` string, time, required
  - `end_time` string, time, required

## Other responses

- `422` — Validation Error

---

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