Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
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
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}`,
},
})
},
})