---
title: "Update Stay On Trip"
method: PATCH
path: "/v1/trips/{trip_id}/stays/{stay_id}"
tags: ["mcp-server"]
---

# Update Stay On Trip

`PATCH /v1/trips/{trip_id}/stays/{stay_id}`

Change a booking in place — dates, price, or its confirmation number.

Without this a stay could be recorded and never corrected: the confirmation
number could only be set at creation, and a booking whose dates moved had no
path back short of leaving a stale one behind, since removing was not
possible either.

## Path parameters

- `trip_id` string, uuid, required
- `stay_id` string, required

## Request body

- UpdateStayRequest — Fields to change on an existing stay. Omit one to leave it alone. A check-in or check-out time sent as an explicit null is cleared; every other field sent as null is left alone, matching UpdateStayAction.
  - `name` string, nullable
  - `check_in_date` string, date, nullable
  - `check_out_date` string, date, nullable
  - `check_in_time` string, time, nullable
  - `check_out_time` string, time, nullable
  - `total_price` number, nullable
  - `currency` string, nullable
  - `confirmation_number` string, nullable
  - `is_booked` boolean, nullable

## Response `200`

Successful Response

- object

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/stardrift/apis/fastapi.md) · [All operations](https://skmtc.dev/stardrift/apis/fastapi/llms.txt) · [OpenAPI document](https://skmtc.dev/stardrift/apis/fastapi/revisions/f6559d3df7e9?raw)
