From 3c6593a62dd113aed33a60dba5fa5e9cb0fd0b91 Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Tue, 21 Jul 2026 22:54:51 -0700 Subject: [PATCH] Align the schedule entry create cURL example with its JSON request --- sections/schedule_entries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sections/schedule_entries.md b/sections/schedule_entries.md index 992b572..026eb24 100644 --- a/sections/schedule_entries.md +++ b/sections/schedule_entries.md @@ -313,7 +313,7 @@ This endpoint will return `201 Created` with the current JSON representation of ```shell curl -s -H "Authorization: Bearer $ACCESS_TOKEN" -H "Content-Type: application/json" \ - -d '{"summary":"Important Meeting","starts_at":"2015-06-04T00:00:00Z","ends_at":"2015-06-04T00:00:00Z"}' \ + -d '{"summary":"Important Meeting","starts_at":"2015-06-04T00:00:00Z","ends_at":"2015-06-04T02:00:00Z"}' \ https://3.basecampapi.com/$ACCOUNT_ID/schedules/3/entries.json ```