Rally: How to Update Planned End Date to null value using API
search cancel

Rally: How to Update Planned End Date to null value using API

book

Article ID: 198632

calendar_today

Updated On:

Products

Rally SaaS

Issue/Introduction

Is it possible to update an existing date in the Planned End Date attribute to null value using the Rally API? 

Environment

 

 

Resolution

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
  }
}