trip_update
PATCH /trips/:tripID — Update a trip
Update one or more fields on an existing trip. Only include the fields you want to change. To change destination, provide either placeID or eventID and the full location will be re-resolved.
Trip points: passing points replaces the entire array (it's not a patch within the array). Up to 20 items, same shape as POST /trips: { note: string (max 280 chars), noteHTML?: string, placeID?: string }. To clear all points, pass points: [].
⚠️ WRITE operation: this mutates your DC account data.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | No | Updated note | |
| points | No | Optional. Replace the entire `points` array (not a patch within). Up to 20 items, same shape as `POST /trips`. Pass `[]` to clear all points. | |
| tripID | Yes | The trip ID to update | |
| endDate | No | New end date (ISO 8601) | |
| eventID | No | New destination — DC event ID (uses event's city). Pass `null` to unlink without changing the location. | |
| placeID | No | New destination — Google Place ID | |
| startDate | No | New start date (ISO 8601) |