Mail letters and postcards online. We’ll print, stamp and send U.S. mail for you, from 95¢. Simple, pay-as-you-go pricing.
Go to siteThe DocuPost API enables automated mail handling, offering services like sending letters, postcards, and checks via a programmatic interface. Within Pipedream, you can harness this API to create dynamic, serverless workflows that trigger postal mail actions based on various events from a plethora of supported apps. Think of automating thank-you notes, payment disbursements, or direct mail marketing campaigns, all reacting in real-time to user behavior, payment events, or custom triggers.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
docupost: {
type: "app",
app: "docupost",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.docupost.com/api/1.1/wf/getbalance`,
params: {
api_token: `${this.docupost.$auth.api_token}`,
},
})
},
})
Automate Thank-You Postcards for E-commerce Orders
When a new order is placed via Shopify, use the DocuPost API on Pipedream to send a personalized postcard thanking your customer. This can help increase customer loyalty and encourage repeat business.
Send Payment Checks on Invoice Completion
Combine QuickBooks and DocuPost by setting up a workflow in Pipedream where a check is mailed out automatically whenever an invoice is marked as paid. This streamlines the payment process for both the business and the client.
Direct Mail Campaigns Triggered by CRM Events
Integrate Salesforce events with DocuPost API on Pipedream. For instance, when a prospect reaches a certain stage in your sales pipeline, automatically send them a tailored brochure or offer letter to enhance engagement and conversion.
Sends a physical letter via USPS first class mail. See the documentation
Dispatches a glossy, color 4x6 postcard via the US Postal Service. See the documentation
DocuPost uses API keys for authentication. When you connect your DocuPost account, Pipedream securely stores the keys so you can easily authenticate to DocuPost APIs in both code and no-code steps.