LastPass manages your passwords and online life, so you don’t have to.
Manages user group membership in LastPass. Either adds a user to a group or removes them from a group.
Deactivates or completely removes a user account. This action must be used responsibly, considering its irreversible nature.
The LastPass Enterprise API lets you automate and manage user access, shared folders, and security settings within your LastPass Enterprise account. With this API integrated in Pipedream, you can create workflows that streamline your password management tasks, enforce security policies, and sync with your organization's user directory. It's a secure way to manage credentials across your company's workforce, without constantly diving into the LastPass dashboard.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lastpass: {
type: "app",
app: "lastpass",
}
},
async run({steps, $}) {
const data = {
"cid": `${this.lastpass.$auth.account_number}`,
"provhash": `${this.lastpass.$auth.prov_hash}`,
"cmd": `reporting`,
}
return await axios($, {
method: "post",
url: `https://lastpass.com/enterpriseapi.php`,
headers: {
"Content-Type": `application/json`,
},
data,
})
},
})
The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeform: {
type: "app",
app: "typeform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.typeform.com/me`,
headers: {
Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
},
})
},
})