Fetch skill tree based on category
GET/course/skill-tree/:category
Fetch skill tree based on category
Request
Path Parameters
category stringrequired
Category name
Responses
- 200
- 400
OK.
- application/json
- Schema
- Example (from schema)
Schema
status boolean
data object
Example:
[{"courses":[123,456],"name":"abc"}]{
"status": true,
"data": [
{
"courses": [
123,
456
],
"name": "abc"
}
]
}
Bad request.
- application/json
- Schema
- Example (from schema)
Schema
success boolean
Example:
falsemessage string
{
"success": false,
"message": "string"
}