I am trying to use the Asana API to create a task assigned to me and added to an existing project.
I tried without specifying the workspace as suggested by someone else, but the task creation is still not running.
jSon I use the following:
{ "data":
{
"name":"Testing Project",
"followers":[10112, 141516],
"workspace":6789,
"assignee":12345,
"project": 1234
}
}
If I create a task and then send another API call with the following jSon, this works, but that means that I need to create 2 API calls every time I create a task.
{
"project": 1234
}
source
share