Versions Compared

Key

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

Limits

  • Max length of every string (e.g. keys, descriptions) is limited to 100 characters

  • Strings starting or ending with white space are not allowed

Endpoints

Get skill tree

Returns the applicable skill tree

  • GET /rest/skillsforjira/1/skilltree

  • Request:

    • None

  • Response [JSON]:

    • skillTree: Hierarchical skill tree including categories and skills

...

  • Request:

    Code Block
    HTTP GET: https://{your-instance}/rest/skillsforjira/1/skilltree
  • Response (200):

    Code Block
    {
      "skillTree": [
        {
            "key": "f2c4cba9-6082-48c8-b23e-852e101bedbd",
            "type": "category",
            "displayName": "Design",
            "children": [
              {
                  "key": "9935f79d-02d1-4415-a81b-04f9e9dcd7ce",
                  "type": "category",
                  "displayName": "UX"
                  "children": [
                      { "key": "User Flows" },
                      { "key": "Wireframes" },
                      { "key": "Usability Testing" }
                  ]
              }
            ]
        }
      ]
    }

Update skill

...

tree

Updates the entire skill tree with a new version

Note

Skill requirements in existing issues will not be affected.

  • POST /rest/skillsforjira/1/skilltree

  • Request:

    • Skill tree object

  • Response [JSON]:

    • Updated skill tree

Example:

...