Hello,
Forgive me if a similar question has been asked, but I couldn’t find anything about it.
According to the docs for Projects, the variable due_date
is deprecated in favour of due_on
; however, if I want to include start_on
, I receive the following error telling me that due_date
is still required:
{
“response”: {
“statusCode”: 400,
“body”: {
“errors”: [
{
“error”: “project_start_date_requires_due_date”,
“message”: “You must provide a due date when changing the start date.”,
“user_message”: “You must provide a due date when changing the start date.”,
“help”: “For more information on API status codes and how to handle them, read the docs on errors: Build an app with Asana”
}
]
}
},
“expects”: {
“statusCode”: [
200,
201,
404
]
},
“message”: “Bad API request. Try checking your input properties.”
}
Currently, I am sending the API both due_date
and due_on
, but this will probably still break when due_date
is finally removed.
Can anyone please possibly shed light on why this is happening? Thanks very much.