Get Learning Paths
Request Uri:
Get a list of learning paths in your organization.
GET /learningpaths?
Response Body: (XML)
<LearningPaths>
<LearningPath>
<Id></Id>
<Name></Name>
<Description></Description>
<Active></Active>
<OriginalId></OriginalId>
<ForSale>true/false</ForSale>
<EcommerceShortDescription>string</EcommerceShortDescription>
<EcommerceLongDescription>string</EcommerceLongDescription>
<AccessTillDate>YYYY-MM-DDTHH:MM:SS.SSS</AccessTillDate>
<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</EcommerceLongDescription>
<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
DELETE/learningpaths/{learningpathid}?
Response Header:
200 OK
Comments
0 comments
Article is closed for comments.