Mail letters and postcards online. We’ll print, stamp and send U.S. mail for you, from 95¢. Simple, pay-as-you-go pricing.
Emit new event when a new message is posted in a channel
Emit new event when a new message is received in a chat
Emit new event when a new team is joined by the authenticated user
Sends a physical letter via USPS first class mail. See the documentation
Create a new channel in Microsoft Teams. See the docs here
Dispatches a glossy, color 4x6 postcard via the US Postal Service. See the documentation
Get the list of shift instances for a team. See the documentation
The 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}`,
},
})
},
})
The Microsoft Teams API on Pipedream allows you to automate tasks, streamline communication, and integrate with other services to enhance the functionality of Teams as a collaboration hub. With this API, you can send messages to channels, orchestrate complex workflows based on Teams events, and manage Teams' settings programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
microsoft_teams: {
type: "app",
app: "microsoft_teams",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.microsoft_teams.$auth.oauth_access_token}`,
},
})
},
})