litmos_list_courses
Retrieve a paginated list of courses from Litmos, including course IDs, names, and codes. Use the IDs to fetch detailed results for a specific user and course combination.
Instructions
List courses available in the Litmos organisation.
Use the returned course IDs with litmos_get_user_course_results to fetch detailed results for a specific user/course combination.
Args: params: CourseListInput with: - limit (int): Records to return, default 100, max 1000 - start (int): Offset for pagination, default 0
Returns: str: JSON array of courses: [{"Id": str, "Name": str, "Code": str, "Active": bool, ...}, ...]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |