with Lob and Nutrient Document Web Services API?
The Lob API provides a suite of automation capabilities focused on direct mail, address verification, and print management. With Lob, you can automate the sending of physical mail programmatically, verify addresses to ensure deliverability, and manage printing logistics for marketing campaigns or operational needs. It's a powerful tool for bridging the digital and physical mailing worlds, particularly useful for marketing, billing, and compliance communications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lob: {
type: "app",
app: "lob",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lob.com/v1/addresses`,
auth: {
username: this.lob.$auth.secret_api_key,
password: ''
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nutrient_document_web_services_api: {
type: "app",
app: "nutrient_document_web_services_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.nutrient.io/account/info`,
headers: {
Authorization: `Bearer ${this.nutrient_document_web_services_api.$auth.api_key}`,
},
})
},
})