Update A Walkthrough's Schedule, Status, Or Attendee Details
PATCH
https://api.getcovent.com/api/v1/walkthroughs/{id}Update a walkthrough's schedule, status, or attendee details.
How to Call
Use one of the examples below to call this endpoint from your own integration.
curl -X PATCH "https://api.getcovent.com/api/v1/walkthroughs/{id}" \
-H "Authorization: Bearer <API_KEY>" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"scheduled_at": "2026-04-21T18:00:00Z",
"status": "confirmed",
"notes": "Buyer requested a one-hour delay."
}'Request
Review headers, parameters, and body fields before calling this endpoint.
AuthorizationstringRequired
Bearer token for the proposed external API contract.
Example: Bearer <API_KEY>AcceptstringRequired
Response format header.
Example: application/jsonContent-TypestringRequired
JSON request body header.
Example: application/jsonidstringRequired
id path parameter.
Example: <id>scheduled_atstringRequired
scheduled_at request field.
Example: 2026-04-21T18:00:00ZstatusstringRequired
status request field.
Example: confirmednotesstringRequired
notes request field.
Example: Buyer requested a one-hour delay.Response
200application/jsonidstringRequired
id response field.
Example: wt_123scheduled_atstringRequired
scheduled_at response field.
Example: 2026-04-21T18:00:00ZstatusstringRequired
status response field.
Example: confirmednotesstringRequired
notes response field.
Example: Buyer requested a one-hour delay.updated_atstringRequired
updated_at response field.
Example: 2026-04-17T20:20:00ZResponse Example
{
"id": "wt_123",
"scheduled_at": "2026-04-21T18:00:00Z",
"status": "confirmed",
"notes": "Buyer requested a one-hour delay.",
"updated_at": "2026-04-17T20:20:00Z"
}