Create Project
asana_create_projectCreate a new Asana project with optional team assignment, colors, notes, default view, and privacy settings.
Instructions
Create a new project in a workspace. In organization workspaces (most), a team GID is required. Returns the created project object.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the project. | |
| team | No | The GID of the team to create the project under. Required for organization workspaces. Get team GIDs from asana_get_project's team.gid field on an existing project. | |
| color | No | Color of the project. One of: dark-pink, dark-green, dark-blue, dark-red, dark-teal, dark-brown, dark-orange, dark-purple, dark-warm-gray, light-pink, light-green, light-blue, light-red, light-teal, light-brown, light-orange, light-purple, light-warm-gray. | |
| notes | No | Plain-text description or notes for the project. | |
| workspace | No | The GID of the workspace (numeric string). Get it from asana_list_workspaces. Can be omitted if ASANA_DEFAULT_WORKSPACE_GID is set. | |
| opt_fields | No | Comma-separated fields to include in the response. Default fields: gid, name, resource_type. | |
| default_view | No | Default view when opening the project. One of: list, board, calendar, timeline. | |
| privacy_setting | No | Privacy setting. One of: `public_to_workspace` (anyone in org can find it), `private_to_team` (only team members), `private` (invite-only). |