Create a schedule entry
documentedCreate a schedule entry for a schedule.
POST /schedules/{schedule_id}/entries.jsonSchedule Entriesno implementation yet0 runsNo 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}}/buckets/{{$project_id}}/schedules/{{$schedule_id}}/entries.json" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json; charset=utf-8" \
-H "Accept: application/json" \
-A 'Basecamp4 Integration (web@example.com)' \
-d '{"summary":"{{$summary}}","starts_at":"{{$starts_at}}","ends_at":"{{$ends_at}}","description":"{{$description}}","all_day":{{$all_day}},"notify":{{$notify}},"participant_ids":[{{$participant_ids}}]}'