---
title: "Create Customer Availability"
method: POST
path: "/calendars/customer-availability"
tags: ["Calendar"]
---

# Create Customer Availability

`POST /calendars/customer-availability`

Create a new default availability rule for the current customer.

- **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.

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

- CustomerAvailabilityResponse — Response model for customer default availability
  - `availability_id` string, uuid, required
  - `customer_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/4a81645b59f6/schema)
