with OpnForm and PostGrid Print & Mail?
Create a new contact in PostGrid. See the documentation
Creates a new letter in PostGrid. See the documentation
Creates a new postcard in PostGrid. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
opnform: {
type: "app",
app: "opnform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.opnform.com/external/zapier/validate`,
headers: {
Authorization: `Bearer ${this.opnform.$auth.api_key}`,
},
})
},
})
The PostGrid Print & Mail API offers seamless print and mail solutions, enabling the automation of sending personalized letters, postcards, checks, and more. With this API, you can systematize direct mail campaigns, transactional mailings, or on-demand dispatch without managing printing infrastructure. In Pipedream, you can harness this capability to interlace PostGrid with an array of other services and triggers, creating workflows that respond to events such as form submissions, scheduled campaigns, or customer actions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
postgrid: {
type: "app",
app: "postgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.postgrid.com/print-mail/v1/contacts`,
headers: {
"x-api-key": `${this.postgrid.$auth.api_key}`,
},
})
},
})