LightSpeed VT is the most effective web-based training system on Earth. We provide the foundation for creating a training experience like no other.
Go to siteLightSpeed VT is a learning management system (LMS) that provides a platform for delivering interactive training and e-learning experiences. Through the LightSpeed VT API, you can automate access to course catalogs, manage users, track progress and performance, and integrate this data with other systems. On Pipedream, you can leverage this API to create workflows that respond to events in real-time, synchronize training data with other platforms, and enhance the user learning experience with personalized automations.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lightspeed_vt: {
type: "app",
app: "lightspeed_vt",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://webservices.lightspeedvt.net/REST/V1/users/`,
auth: {
username: `${this.lightspeed_vt.$auth.api_key}`,
password: `${this.lightspeed_vt.$auth.api_secret}`,
},
})
},
})
Automated User Enrollment: Automatically enroll new employees into relevant training courses in LightSpeed VT when they are added to your HR system. For example, when a new hire record is created in BambooHR, a Pipedream workflow can be triggered to add that user to specific courses in LightSpeed VT.
Course Completion Tracking: Monitor and respond to course completions by sending personalized emails or messages. When a user completes a course in LightSpeed VT, trigger a Pipedream workflow that congratulates them via Gmail and logs this achievement in a Google Sheet for record-keeping.
Real-time Performance Alerts: Create alerts for management when employees score below a certain threshold on a test or assessment. With Pipedream, you can set up a workflow that listens for low test scores in LightSpeed VT and sends a Slack notification to a designated manager to follow up.
Emit new event every time there is a new user in the system
Creates a new user in the LightSpeed VT system. See the documentation
LightSpeed VT uses API keys for authentication. When you connect your LightSpeed VT account, Pipedream securely stores the keys so you can easily authenticate to LightSpeed VT APIs in both code and no-code steps.
To retrieve your API Keys and API Password,