The following requests relate to listing courses that are assigned to a team. The calls are made via the Litmos Training Engine API.
Note: All requests must be Authenticated.
List Team Courses
Get a list of all courses that are assigned to a team.
Access Level: Account Owners Only
Request Uri
GET /teams/{teamId}/courses
Response
<Courses> <Course> <Id>string [max length 50]</Id> <Code>string [max length 20]</Code> <Name>string [max length 255]</Id> <Active>true/false</Active> <ForSale>true/false</ForSale> <OriginalId>integer</OriginalId> <Description>string</Description> <EcommerceShortDescription>string</EcommerceShortDescription> <EcommerceLongDescription>string</EcommerceLongDescription>
<CourseCodeForBulkImport></CourseCodeForBulkImport
<Price></Price>
<AccessTillDate></AccessTillDate>
<AccessTillDays></AccessTillDays>
<CourseTeamLibrary>true/false</CourseTeamLibrary>
<Languages>en-US | de-DE | te-IN</Languages>
</Course>
<Course>
...
</Course>
</Courses>
Note:
- OriginalId can be used as part of a single sign in process to take a user straight into a particular course.
- ForSale indicates if the course has been marked for sale via the Litmos UI
List Team Learning Paths
Get a list of all learning paths that are assigned to a team.
Access Level: Account Owners Only
Request Uri
GET /teams/{teamid}/learningpaths
Response
<LearningPaths>
<LearningPath>
<Id></Id>
<Name></Name>
<Description></Description>
<Active>true/false</Active>
<OriginalId></OriginalId>
<ForSale>true/false</ForSale>
<Price i:nil="true"/>
<EcommerceShortDescription/>
<EcommerceLongDescription/>
<AccessTillDate i:nil="true"/>
<AccessTillDays i:nil="true"/>
<IsEquivalency>true/false</IsEquivalency>
<LearningPathTeamLibrary>true/false</LearningPathTeamLibrary>
<Languages>en-US | de-DE | te-IN</Languages>
</LearningPath>
<LearningPath>
...
</LearningPath>
</LearningPaths>
Comments
0 comments
Article is closed for comments.