Get Learning Paths
Get a list of learning paths in your organization.
Request URI
GET /learningpaths?
Response Body (XML)
<LearningPaths> <LearningPath> <Id></Id> <Name></Name> <Description></Description> <Active></Active> <OriginalId></OriginalId> <ForSale>true/false</ForSale> <Price>integer(decimal)</Price> <EcommerceShortDescription>string</EcommerceShortDescription> <EcommerceLongDescription>string</EcommerceLongDescription> <AccessTillDate>YYYY-MM-DDTHH:MM:SS.SSS</AccessTillDate> <AccessTillDays>integer</AccessTillDays> <IsEquivalency> true or false </IsEquivalency> <LearningPathTeamLibrary>false</LearningPathTeamLibrary> </LearningPath> <LearningPath> ... </LearningPath> </LearningPaths>
Get a Learning Path
Get a specific learning path record.
Request URI
GET /learningpaths/{learningpathid}?
Response Body (XML):
<LearningPath xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Id></Id> <Name></Name> <Description></Description> <Active></Active> <OriginalId></OriginalId> <ForSale>true/false</ForSale> <Price></Price> <EcommerceShortDescription>string</EcommerceShortDescription> <CommerceLongDescription>string</CommerceLongDescription> <AccessTillDate>datetime [iso 8601 format]</AccessTillDate> <IsEquivalency>true or false</IsEquivalency> <LearningPathTeamLibrary>false</LearningPathTeamLibrary> </LearningPath>
Get Learning Path Courses
Get the course records that have been added into a learning path.
Request URI
GET /learningpaths/{learningpathid}/courses?
Response Body (XML)
<Courses> <Course> <Id></Id> <Code></Code> <Name></Name> <Description/> <Active></Active> <ForSale></ForSale> <Price></Price> <OriginalId></OriginalId> <EquivalencyId></EquivalencyId> <EquivalencyGroupName></EquivalencyGroupName> </Course> <Course> ... </Course> </Courses>
Get Learning Path Users
Get a list of users assigned to a learning path.
Request URI
GET /learningpaths/{learningpathid}/users?
Response Body (XML)
<Users> <User> <Id></Id> <UserName></UserName> <FirstName></FirstName> <LastName></LastName> <Completed></Completed> <PercentageComplete></PercentageComplete> </User> <User> ... </User> </Users>
Delete a learning path
Delete a learning path record
Request URI
DELETE /learningpaths/{learningpathid}?
Response Header
200 OK