Get statuses from a project
GET
/projects/{project_gid}/project_statuses
Project Statuses
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.asana.com/api/1.0/projects/1331/project_statuses'
Response Response Example
200 - Example 1
{
"data": [
{
"gid": "12345",
"resource_type": "task",
"title": "Status Update - Jun 15"
}
]
}
Request
Path Params
project_gid
string
required
Example:
1331
Query Params
opt_pretty
string
optional
Provides the response in a “pretty” format. In the case of JSON this means doing proper line breaking and indentation to make it readable. This will take extra time and increase the response size so it is advisable only to use this during debugging.
Example:
true
opt_fields
array[string]
optional
Some requests return compact representations of objects in order to conserve resources and complete the request more efficiently. Other times requests return more information than you may need. This option allows you to list the exact set of fields that the API should be sure to return for the objects. The field names should be provided as paths, described below.
The id of included objects will always be returned, regardless of the field options.
Example:
["followers","assignee"]
limit
integer
optional
The number of objects to return per page. The value must be between 1 and 100.
Example:
50
offset
string
optional
An offset to the next page returned by the API. A pagination request will return an offset token, which can be used as an input parameter to the next request. If an offset is not passed in, the API will return the first page of results.
'Note: You can only pass in an offset that was returned to you via a previously paginated request.'
Example:
eyJ0eXAiOJiKV1iQLCJhbGciOiJIUzI1NiJ9
Responses
Modified at 2022-09-13 02:00:31