-
Suggestion
-
Resolution: Unresolved
-
13
-
1
-
Please provide REST API to update confluence Space Category.
Currently there is no REST API to update Space Category.
We have REST API to update Labels and if we update the Label using a content ID of a page it actually updates the Category as a Label, but actually it does not update the table in confluence database.
Post data to update Category Label-
https://<confluence-url>/rest/api/content/19540293/label
[
{ "prefix": "team", "name": "test" }]
This updates category but when you check the space in the category it does not list the space here-
http://<confluence-url>/spacedirectory/view.action?selectedSpaceCategory=test
workaround-
use CLI plugin command to update the category-
./confluence.bat --action addLabels --space "<Space name>" --labels "team:<Category name>"
Updated to 9.3.1 and it works!