Versions Compared

Key

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

...

OPTIONS TREE REST API’S

Info

Please note that we will release the new version on July 8, 2025. In the meantime, if you are currently using any of the MLTF APIs, please prepare to transition to the latest versions.

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.

Expand
titleDisable Option

URL: <jira_base_url>/rest/category-level-rest/1.0/category/enable-disable

Method:

Status
colourPurple
titlePUT

Data:

Code Block
{
    "id": 17792,
    "enable": false
}

Result: -

Expand
titleEnable Option

URL: <jira_base_url>/rest/category-level-rest/1.0/category/enable-disable

Method:

Status
colourPurple
titlePUT

Data:

Code Block
{
    "id": 17792,
    "enable": true
}

Result: -

CUSTOM FIELD API

...