Asana
  1. Projects
Asana
  • Attachments
    • Delete an attachment
      DELETE
    • Get an attachment
      GET
    • Get attachments for a task
      GET
    • Upload an attachment
      POST
  • Batch API
    • Submit parallel requests
      POST
  • Custom Fields
    • Create a custom field
      POST
    • Delete a custom field
      DELETE
    • Get a custom field
      GET
    • Update a custom field
      PUT
    • Create an enum option
      POST
    • Reorder a custom field's enum
      POST
    • Update an enum option
      PUT
    • Get a workspace's custom fields
      GET
  • Events
    • Get events on a resource
  • Goals
    • Get goals
    • Create a goal
    • Delete a goal
    • Get a goal
    • Update a goal
    • Add a collaborator to a goal
    • Add a subgoal to a parent goal
    • Add a project/portfolio as supporting work for a goal.
    • Get parent goals from a goal
    • Remove a collaborator from a goal
    • Remove a subgoal from a goal
    • Remove a project/portfolio as supporting work for a goal.
    • Create a goal metric
    • Update a goal metric
    • Get subgoals from a goal
    • Get supporting work from a goal
  • Jobs
    • Get a job by id
  • Organization Exports
    • Create an organization export request
    • Get details on an org export request
  • Teams
    • Get teams in an organization
    • Create a team
    • Get a team
    • Add a user to a team
    • Remove a user from a team
    • Get teams for a user
  • Portfolio Memberships
    • Get multiple portfolio memberships
    • Get a portfolio membership
    • Get memberships from a portfolio
  • Portfolios
    • Get multiple portfolios
    • Create a portfolio
    • Delete a portfolio
    • Get a portfolio
    • Update a portfolio
    • Add a custom field to a portfolio
    • Add a portfolio item
    • Add users to a portfolio
    • Get portfolio items
    • Remove a custom field from a portfolio
    • Remove a portfolio item
    • Remove users from a portfolio
  • Custom Field Settings
    • Get a portfolio's custom fields
    • Get a project's custom fields
  • Project Memberships
    • Get a project membership
    • Get memberships from a project
  • Project Statuses
    • Delete a project status
    • Get a project status
    • Get statuses from a project
    • Create a project status
  • Projects
    • Get multiple projects
      GET
    • Create a project
      POST
    • Delete a project
      DELETE
    • Get a project
      GET
    • Update a project
      PUT
    • Add a custom field to a project
      POST
    • Add followers to a project
      POST
    • Add users to a project
      POST
    • Duplicate a project
      POST
    • Remove a custom field from a project
      POST
    • Remove followers from a project
      POST
    • Remove users from a project
      POST
    • Get task count of a project
      GET
    • Get projects a task is in
      GET
    • Get a team's projects
      GET
    • Create a project in a team
      POST
    • Get all projects in a workspace
      GET
    • Create a project in a workspace
      POST
  • Sections
    • Get sections in a project
    • Create a section in a project
    • Move or Insert sections
    • Delete a section
    • Get a section
    • Update a section
    • Add task to section
  • Tasks
    • Get tasks from a project
    • Get tasks from a section
    • Get tasks from a tag
    • Get multiple tasks
    • Create a task
    • Delete a task
    • Get a task
    • Update a task
    • Set dependencies for a task
    • Set dependents for a task
    • Add followers to a task
    • Add a project to a task
    • Add a tag to a task
    • Get dependencies from a task
    • Get dependents from a task
    • Duplicate a task
    • Unlink dependencies from a task
    • Unlink dependents from a task
    • Remove followers from a task
    • Remove a project from a task
    • Remove a tag from a task
    • Set the parent of a task
    • Get subtasks from a task
    • Create a subtask
    • Get tasks from a user task list
    • Search tasks in a workspace
  • Stories
    • Delete a story
    • Get a story
    • Update a story
    • Get stories from a task
    • Create a story on a task
  • Tags
    • Get multiple tags
    • Create a tag
    • Delete a tag
    • Get a tag
    • Update a tag
    • Get a task's tags
    • Get tags in a workspace
    • Create a tag in a workspace
  • Team Memberships
    • Get team memberships
    • Get a team membership
    • Get memberships from a team
    • Get memberships from a user
  • Users
    • Get users in a team
    • Get multiple users
    • Get a user
    • Get a user's favorites
    • Get users in a workspace or organization
  • Time Periods
    • Get time periods
    • Get a time period
  • User Task Lists
    • Get a user task list
    • Get a user's task list
  • Workspace Memberships
    • Get workspace memberships for a user
    • Get a workspace membership
    • Get the workspace memberships for a workspace
  • Webhooks
    • Get multiple webhooks
    • Establish a webhook
    • Delete a webhook
    • Get a webhook
  • Workspaces
    • Get multiple workspaces
    • Get a workspace
    • Update a workspace
    • Add a user to a workspace or organization
    • Remove a user from a workspace or organization
  • Typeahead
    • Get objects via typeahead
  1. Projects

Create a project

POST
/projects
Create a new project in a workspace or team.
Every project is required to be created in a specific workspace or
organization, and this cannot be changed once set. Note that you can use
the workspace parameter regardless of whether or not it is an
organization.
If the workspace for your project is an organization, you must also
supply a team to share the project with.
Returns the full record of the newly created project.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.asana.com/api/1.0/projects' \
--header 'Content-Type: application/json' \
--data-raw '{
    "data": {
        "name": "Stuff to buy",
        "archived": false,
        "color": "light-green",
        "current_status": {
            "title": "Status Update - Jun 15",
            "color": "green",
            "html_text": "<body>The project <strong>is</strong> moving forward according to plan...</body>",
            "text": "The project is moving forward according to plan...",
            "author": {
                "name": "Greg Sanchez"
            },
            "created_by": {
                "name": "Greg Sanchez"
            }
        },
        "default_view": "calendar",
        "due_date": "2019-09-15",
        "due_on": "2019-09-15",
        "html_notes": "<body>These are things we need to purchase.</body>",
        "is_template": false,
        "notes": "These are things we need to purchase.",
        "public": false,
        "start_on": "2019-09-14",
        "custom_fields": {
            "4578152156": "Not Started",
            "5678904321": "On Hold"
        },
        "followers": "12345,23456",
        "owner": "12345",
        "team": "12345"
    }
}'
Response Response Example
201 - Example 1
{
    "data": {
        "gid": "12345",
        "resource_type": "task",
        "name": "Stuff to buy",
        "archived": false,
        "color": "light-green",
        "created_at": "2012-02-22T02:06:58.147Z",
        "current_status": {
            "gid": "12345",
            "resource_type": "task",
            "title": "Status Update - Jun 15",
            "color": "green",
            "html_text": "<body>The project <strong>is</strong> moving forward according to plan...</body>",
            "text": "The project is moving forward according to plan...",
            "author": {
                "gid": "12345",
                "resource_type": "task",
                "name": "Greg Sanchez"
            },
            "created_at": "2012-02-22T02:06:58.147Z",
            "created_by": {
                "gid": "12345",
                "resource_type": "task",
                "name": "Greg Sanchez"
            },
            "modified_at": "2012-02-22T02:06:58.147Z"
        },
        "custom_field_settings": [
            {
                "gid": "12345",
                "resource_type": "task"
            }
        ],
        "default_view": "calendar",
        "due_date": "2019-09-15",
        "due_on": "2019-09-15",
        "html_notes": "<body>These are things we need to purchase.</body>",
        "is_template": false,
        "members": [
            {
                "gid": "12345",
                "resource_type": "task",
                "name": "Greg Sanchez"
            }
        ],
        "modified_at": "2012-02-22T02:06:58.147Z",
        "notes": "These are things we need to purchase.",
        "public": false,
        "start_on": "2019-09-14",
        "workspace": {
            "gid": "12345",
            "resource_type": "task",
            "name": "My Company Workspace"
        },
        "custom_fields": [
            {
                "gid": "12345",
                "resource_type": "task",
                "display_value": "blue",
                "enabled": true,
                "enum_options": [
                    {
                        "gid": "12345",
                        "resource_type": "task",
                        "color": "blue",
                        "enabled": true,
                        "name": "Low"
                    }
                ],
                "name": "Status",
                "number_value": 5.2,
                "resource_subtype": "text",
                "text_value": "Some Value",
                "type": "text"
            }
        ],
        "followers": [
            {
                "gid": "12345",
                "resource_type": "task",
                "name": "Greg Sanchez"
            }
        ],
        "icon": "chat_bubbles",
        "owner": {
            "gid": "12345",
            "resource_type": "task",
            "name": "Greg Sanchez"
        },
        "permalink_url": "https://app.asana.com/0/resource/123456789/list",
        "team": {
            "gid": "12345",
            "resource_type": "task",
            "name": "Marketing"
        }
    }
}

Request

Body Params application/json

Examples

Responses

🟢201Successfully retrieved projects.
application/json
Body

🟠400400
🟠401401
🟠403403
🟠404404
🔴500500
Modified at 2022-09-13 02:00:31
Previous
Get multiple projects
Next
Delete a project
Built with