There's no documentation for updating the favorite
field.
Currently I'm trying the following method:
PUT https://app.asana.com/api/1.0/projects/{projectid}
Post data:
{
"data": {
"favorite": true
}
}
There's no error reported. The Asana API returns the project details as the response with the responseCode
200. But when I view the project in Asana the Favorite field has not been updated.
How do I use the API to modify this field?