Create project
documentedCreate a new project for the account.
POST /{account_id}/projectsProjectsno 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}}/projects" \
-X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"project": {"name": "{{$title}}", "rate_type": "project", "hour_rate": {{$hour_rate}}, "active": true, "description": "{{$description}}", "client_id": {{$client_id}}, "currency_code": "{{$currency_code}}", "color": "{{$color}}", "enable_labels": "{{$enable_labels}}", "budget_type": "{{$budget_type}}", "budget": {{$budget}}, "users": [{"user_id": {{$user_id}}, "hour_rate": {{$user_hour_rate}}}]}}'