Sell and ship with confidence using secure, scalable, and automated ID verification. No code required.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
real_id: {
type: "app",
app: "real_id",
}
},
async run({steps, $}) {
const data = {
firstName: "John",
lastName: "Smith",
email: "johnsmith@gmail.com",
}
return await axios($, {
method: "post",
url: `https://real-id.getverdict.com/api/v1/checks`,
headers: {
Authorization: `Bearer ${this.real_id.$auth.api_key}`,
"content-type": `application/json`,
},
data,
})
},
})
Permanently delete all data associated with a specific ID check. See the documentation.
Real ID uses API keys for authentication. When you connect your Real ID account, Pipedream securely stores the keys so you can easily authenticate to Real ID APIs in both code and no-code steps.
To get your Token, sign in and go to "Settings" > "DevTools".