Is it possible to update an existing date in the Planned End Date attribute to null value using the Rally API?
I was successful using this as my URL:
https://rally1.rallydev.com/slm/webservice/v2.0/portfolioitem/<OBJECT_ID>
And this as my payload:
{
"PortfolioItem": {
"PlannedEndDate": null
}
}