Sign in

Update a schedule entry

documented

Update a schedule entry.

PUT /schedule_entries/{schedule_entry_id}.jsonSchedule Entriesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://3.basecampapi.com/{{$account_id}}/schedule_entries/{{$schedule_entry_id}}.json" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json; charset=utf-8" \
  -H "Accept: application/json" \
  -H "User-Agent: Basecamp4-Keychains (you@example.com)" \
  -d '{"summary": "{{$summary}}", "starts_at": "{{$starts_at}}", "ends_at": "{{$ends_at}}", "description": "{{$description}}", "all_day": {{$all_day}}, "participant_ids": {{$participant_ids}} }'
Update a schedule entry · Basecamp · OpenIntegrations