Persona offers identity infrastructure that allows you to craft personalized and automated verification solutions so you can better understand & protect users.
The Persona API lets you automate identity verification processes, tailor user onboarding, and ensure compliance with ease. Within Pipedream, you can use this API to create robust serverless workflows that trigger actions based on verification status, update CRM records, or even flag high-risk activities. Combining Persona with Pipedream's vast suite of integrated apps means you can streamline operations, enhance user trust, and maintain security without the heavy lifting of manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
persona: {
type: "app",
app: "persona",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://withpersona.com/api/v1/accounts`,
headers: {
Authorization: `Bearer ${this.persona.$auth.api_key}`,
"Accept": `application/json`,
"Persona-Version": `2023-01-05`,
},
})
},
})
The ServiceNow API lets developers access and manipulate records, manage workflows, and integrate with other services on its IT service management platform. These capabilities support automating tasks, syncing data across platforms, and boosting operational efficiencies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
servicenow: {
type: "app",
app: "servicenow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.servicenow.$auth.instance_name}.service-now.com/api/now/table/incident`,
headers: {
Authorization: `Bearer ${this.servicenow.$auth.oauth_access_token}`,
},
})
},
})