Create/Invite user
documentedCreate or invite a new user to the account.
POST /{account_id}/usersUsersno 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://api.timelyapp.com/1.1/{{$account_id}}/users" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"user":{"name":"{{$name}}","email":"{{$email}}","user_level":"{{$user_level}}","admin":{{$admin}},"projects":[{"project_id":{{$project_id}},"hour_rate":{{$hour_rate}}]} } }'