Endpoints
Get skill tree
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 [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
Example:
Request:
HTTP GET: https://{your-generated-endpoint-url}
Response (200):
{ "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" } ] } ] } ] }