Sign in

Create event for another user

documented

Create a new event on behalf of another user.

POST /{account_id}/users/{user_id}/eventsEventsno 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://api.timelyapp.com/1.1/{{$account_id}}/users/{{$user_id}}/events" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -d '{"event":{"hours":{{$hours}},"minutes":{{$minutes}},"seconds":0,"estimated_hours":{{$estimated_hours}},"estimated_minutes":{{$estimated_minutes}},"from":"{{$from}}","to":"{{$to}}","day":"{{$day}}","note":"{{$note}}","hour_rate":{{$hour_rate}},"internal_hour_rate":{{$internal_hour_rate}},"timer_state":{{$timer_state}},"created_from":"{{$created_from}}","updated_from":"{{$updated_from}}","user_id":{{$user_id}}}}'