Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

OPTIONS TREE REST API’S

Expand
titleGet All Options Tree

URL: <jira_base_url>/rest/category-level-rest/1.0/root

Method:

Status
colourGreen
titleGET

Data: -

Result: 

Code Block
[

    {

        "self": "<jira_base_url>/rest/category-level-rest/1.0/root/18",

        "id": 18,

        "value": “Tech”

    }

]

...

Expand
titleDelete Option

URL: <jira_base_url>/rest/category-level-rest/1.0/category?id=17792

Method:

Status
colourRed
titleDELETE

Data: - 

Result: -

Expand
titleMove Option

URL: <jira_base_url>/rest/category-level-rest/1.0/category/move

Method:

Status
colourPurple
titlePUT

Code Block
{
"id" : <Option ID>
"parentId": <New Parent ID>
}

*if the parent id is null, the option becomes a first-level option.

CUSTOM FIELD API

Jira's API is used to update/remove/add Multi Level & Tree Field on Issue.

...