Hi Icescrum users,
I am using the community version. I am able to successfully update some of my story fields, such as name, however, I can’t seem to get the tags to update. I can’t update them to remove a tag or add a tag.
I use a json object for input, with Content-Type: text/json header
I also tried using xml, but I get the same.
Works:
===
For example, when I PUT with the json object:
{
"story":{
"name": "This is a BOGUS name"
}
}
I receive a 200 response and the name is updated.
Doesn’t work
===
{
"story":{
"tags": "bogus_tag1, bogus_tag2, bogus_tag3"
}
}
Per the API docs – https://www.icescrum.com/documentation/story-api/#story-api_4
I should be able to update the tags. I receive a 200 response, but the tags aren’t updated.
Looking at the GET response, I also tried
{
"story":{
"tags": ["bogus_tag1", "bogus_tag2", "bogus_tag3"]
}
}
I also receive a 200 response, but the tags don’t update
Any words of wisdom? My main use case is to delete an existing tag on a bunch of my stories then add back a new tag.