Absorb Integration API (v1)
Download OpenAPI specification:Download
Gets a user's current learning path.
Authorizations:
api_key
path Parameters
UserId required | string <guid> The self assessment ID. |
header Parameters
x-api-key | string |
x-api-version | string 1 |
Responses
Response Schema: application/json
id | string <guid> The ID of the learning path. |
roleName | string The name of the desired role in the learning path. |
courseCount | integer <int32> The number of courses in the learning path. |
Array of objects (LearningPathSkillResource) The collection of skills. | |
Array of objects (LearningPathSkillResource) The collection of competencies. |
Response samples
- 200
- 404
Content type
application/json
{- "id": "string",
- "roleName": "string",
- "courseCount": 0,
- "skills": [
- {
- "id": "string",
- "name": "string",
- "userRating": 0,
- "skillType": "Skill",
- "skillCategoryId": "string",
- "courseCount": 0,
- "courseIds": [
- "string"
], - "completedCourseCount": 0,
- "skillPathUpdateRequired": true
}
], - "competencies": [
- {
- "id": "string",
- "name": "string",
- "userRating": 0,
- "skillType": "Skill",
- "skillCategoryId": "string",
- "courseCount": 0,
- "courseIds": [
- "string"
], - "completedCourseCount": 0,
- "skillPathUpdateRequired": true
}
]
}