Get and Post only Enumeration values - problem with POST
![]() I have some enumeration that I can get values through Postman GET method with this URL:
https://server:port/jazz/oslc/enumerations/projectUID/test-enum?oslc_cm.properties=dc:title
And JSON looks like this
[
Why I can't POST some new value over old one?
I have basic authorization with accept and content-type headers as application/json.
If I use resource URL in POST method https://server:port/jazz/oslc/enumerations/projectUID/test-enum/test-enum.literal.l1 and try to change value from "value 1" to say "value 9856 "I get message:
<html xmlns="http://www.w3.org/1999/xhtml">As far I know, I have all permissions as Admin User.
How this can be accomplished? Is it possible to update only enumeration value with OSLC API?
|