Endpoints
...
Returns the applicable skill tree
HTTP Method: GET
Request:
fieldId (query) The API will return the skill tree that applies to the specified field
projectIdOrKey (query) The API will return the skill tree that applies to the specified project. Case-sensitive. [Required if fieldId is specified]
issueTypeId (query) The API will return the skill tree that applies to the specified issue type [Required if fieldId is specified]
Response [JSON]:
skillTree: Hierarchical skill tree including categories and skills
...
Request:
Code Block HTTP GET: https://{your-generated-endpoint-url}
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" } ] } ] } ] }
Get Category
Returns the skill tree category along with the nested sub-categories and skills
HTTP Method: GET
Request:
key (query) The key (id) of the category. Required
Response [JSON]:
category: The requested category infoalong with sub-categories and skills
Example:
Request:
Code Block HTTP GET: https://{your-generated-endpoint-url}?key=24151a90-7c57-4dd1-bf86-762418c650de
Response (200):
Code Block { "category": { "key": "24151a90-7c57-4dd1-bf86-762418c650de", "children": [ { "key": "React" }, { "key": "Angular" }, { "key": "JQuery" }, { "key": "Vue" }, { "key": "d8a55cf6-9828-4a7b-a951-2557bdb9dbc7", "children": [ { "key": "Bootstrap" } ], "type": "category", "displayName": "CSS" } ], "type": "category", "displayName": "Frontend" } }
...
Creates a new category under the specified parent
HTTP Method: POST
Request:
displayName (body) The display name for the category. Required
description (body) The description for the category.
parentKey (body) The key (id) of the category under which to create the new category. If not specified, the new category will be created at the root of the skill tree
Response [JSON]:
created: The array of created categories (array with 1 item)
...
Updates the skill tree category name and description
HTTP Method: PUT
Request:
key (body) The key (id) of the category. Required
displayName (body) The new display name for the category.
description (body) The new description for the category.
Response [JSON]:
changed: The array of updated categories (array with 1 item)
...
Move the specified category under a different parent
HTTP Method: PATCH
Request:
key (query) The key (id) of the category. Required
newParentKey (query) The key (id) of the new parent category. Required
Response [JSON]:
moved: The array of moved categories (array with 1 item)
...
Note |
---|
Only categories with no sub-categories or skills can be deleted |
HTTP Method: DELETE
Request:
key (query) The key (id) of the category. Required
Response [JSON]:
deleted: The array of deleted categories (array with 1 item)
...
Returns the skill details
HTTP Method: GET
Request:
key (query) The key (id) of the skill. Required
Response [JSON]:
skill: The requested skill info
...
Creates a new skill under the specified parent
HTTP Method: POST
Request:
key (body) The key (name) of the new skill. Required
parentKey (body) The key (id) of the category under which to create the new skill. If not specified, the skill will be created at the root of the skill tree
Response [JSON]:
created: The array of created skills (array with 1 item)
...
Move the specified skill under a different parent category
HTTP Method: PATCH
Request:
key (query) The key (name) of the skill. Required
newParentKey (query) The key (id) of the new parent category. Required
Response [JSON]:
moved: The array of moved skills (array with 1 item)
...
Note |
---|
The deleted skill will no longer be available for use. However, the skill will not be deleted from skill requirements of the existing issues. |
HTTP Method: DELETE
Request:
key (query) The key (name) of the skill. Required
Response [JSON]:
deleted: The array of deleted skills (array with 1 item)
...