get https://app.asana.com/api/1.0/sections/
Returns the complete record for a single section.
Responses
Returns the complete record for a single section.
xxxxxxxxxx
curl --request GET \
--url https://app.asana.com/api/1.0/sections/section_gid \
--header 'accept: 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"
}
]
}
}