Create a project status
POST
/projects/{project_gid}/project_statuses
Project Statuses
Returns the full record of the newly created project status update.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.asana.com/api/1.0/projects//project_statuses' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"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..."
}
}'
Response Response Example
201 - Example 1
{
"data": {
"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"
}
}
Request
Path Params
project_gid
string
required
Body Params application/json
Responses
Modified at 2022-09-13 02:00:31