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.
Gets number of form submissions received this month. Also, get number of SSL form submissions, payment form submissions and upload space used by user See the docs here
Gets a list of all submissions for all forms on the account See the docs here
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,
})
},
})
Jotform’s API is a powerhouse for automating form and survey data management. With Pipedream, harness this API to trigger workflows from new form submissions, manipulate and analyze your form data, and sync it across various platforms. Think streamlined data entry to CRMs, instant notifications for new leads or feedback, and timely data backups to cloud storage.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jotform: {
type: "app",
app: "jotform",
}
},
methods: {
_getBaseUrl() {
let baseUrl = `https://${this.jotform.$auth.region}.jotform.com/`;
const standardSubdomains = [
"api",
"eu-api",
"hipaa-api",
];
if (!standardSubdomains.includes(this.jotform.$auth.region)) {
baseUrl += "API/";
}
return baseUrl;
},
},
async run({steps, $}) {
const baseUrl = this._getBaseUrl();
return await axios($, {
url: `${baseUrl}user`,
params: {
apiKey: `${this.jotform.$auth.api_key}`,
},
})
},
})