Create a team
POST
/teams
Teams
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.asana.com/api/1.0/teams' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"name": "Marketing",
"description": "All developers should be members of this team.",
"html_description": "<body><em>All</em> developers should be members of this team.</body>",
"organization": "123456789"
}
}'
Response Response Example
201 - Example 1
{
"data": {
"gid": "12345",
"resource_type": "task",
"name": "Marketing",
"description": "All developers should be members of this team.",
"html_description": "<body><em>All</em> developers should be members of this team.</body>",
"organization": {
"gid": "12345",
"resource_type": "task",
"name": "My Company Workspace"
},
"permalink_url": "https://app.asana.com/0/resource/123456789/list"
}
}
Request
Body Params application/json
Responses
Modified at 2022-09-13 02:00:31