Create workspace
documentedCreate a new workspace.
POST /api/v1/workspacesWorkspacesno 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.mavenlink.com/api/v1/workspaces" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{"workspace": {"title": "{{$title}}", "description": "{{$description}}", "start_date": "{{$start_date}}", "due_date": "{{$due_date}}", "budgeted": {{$budgeted}}, "currency": "{{$currency}}", "consultant_role_name": "{{$consultant_role_name}}", "client_role_name": "{{$client_role_name}}", "access_level": "{{$access_level}}"}}'