How can I update the status of an asset in V1 using the Rest API?
I would assume I could do something like this using the Python SDK:
from v1pysdk import V1Meta
v1 = V1Meta()
for s in (v1.PrimaryWorkitem
.filter("Number='D-01240'")):
s.StoryStatus = v1.StoryStatus(134)
v1.commit()
This is at least how I understand the Python SDK examples here: https://github.com/versionone/VersionOne.SDK.Python
However this does not change anything, even though I have the rights to change the status.
Try using:
According to
~/meta.v1?xsl=api.xsl#PrimaryWorkitem
The attribute onPrimaryWorkitem
of typeStoryStatus
is namedStatus
, so I think it's just a mistaken attribute name.What's probably happening is that you're setting a new attribute on that python object, but since
StoryStatus
is not one of the setters that the SDK created from the instance schema metadata, it doesn't attempt to add it to the uncommitted data collection, and thus the commit is a no-op and yields neither error nor any action.It might be possible to fence off arbitrary attribute access on those objects so that misspelled names raise errors. I'll investigate adding that.