post https://app.asana.com/api/1.0/projects//sections
Creates a new section in a project.
Returns the full record of the newly created section.
Responses
Creates a new section in a project.
Returns the full record of the newly created section.
xxxxxxxxxx
curl --request POST \
--url https://app.asana.com/api/1.0/projects/project_gid/sections \
--header 'accept: application/json' \
--header 'content-type: application/json'
xxxxxxxxxx
20{
"data": {
"gid": "12345",
"resource_type": "section",
"name": "Next Actions",
"created_at": "2012-02-22T02:06:58.147Z",
"project": {
"gid": "12345",
"resource_type": "project",
"name": "Stuff to buy"
},
"projects": [
{
"gid": "12345",
"resource_type": "project",
"name": "Stuff to buy"
}
]
}
}