An awesomely fast cloud printing service that supports all printers and USB weighing scales as well as a feature packed JSON API.
Go to siteThe PrintNode API on Pipedream allows you to integrate cloud printing capabilities into workflows. It supports automating print jobs, managing printers, and querying printer status. With Pipedream's ability to connect to hundreds of apps, you can trigger print jobs from emails, forms, databases, or custom events. The API's functions can be weaved into broader business processes to streamline document handling.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
printnode: {
type: "app",
app: "printnode",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.printnode.com/whoami`,
auth: {
username: `${this.printnode.$auth.api_key}`,
password: ``,
},
})
},
})
Print Shipping Labels on New Orders: Automatically print shipping labels when new orders come in from an eCommerce platform like Shopify. When an order is placed, Pipedream triggers a workflow that sends the order's shipping label to a designated printer via PrintNode.
Print Invoices on Payment Confirmation: Set up a workflow where invoices are automatically printed when payment is confirmed through payment processors like Stripe or PayPal. Once the payment succeeds, a PDF invoice is generated and sent to PrintNode for printing.
Daily Printout of Sales Reports: Schedule a daily workflow that queries your sales database, generates a report, and prints it using PrintNode. This could be connected to apps like Google Sheets or Airtable where your sales data is updated.
Emit new event when a new printnode event is created. See the documentation
Returns a list of all print jobs that have been submitted. See the documentation
Sends a print job to a specified printer. See the documentation
PrintNode uses API keys for authentication. When you connect your PrintNode account, Pipedream securely stores the keys so you can easily authenticate to PrintNode APIs in both code and no-code steps.