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
Uploads a PDF document to the print-autopilot queue. See the documentation
The PrintAutopilot API facilitates the automation of print-on-demand services, allowing you to seamlessly create, manage, and track custom print orders right from within your Pipedream workflows. With this API, you can trigger printing and shipping of products like t-shirts, mugs, and posters as soon as a customer places an order, or batch process orders to optimize fulfillment. In Pipedream, harness these capabilities to build integrated workflows that connect PrintAutopilot with eCommerce platforms, CRM systems, or customer support tools to streamline your print-on-demand business.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
printautopilot: {
type: "app",
app: "printautopilot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://printautopilot.com/api/print-jobs`,
headers: {
Authorization: `Bearer ${this.printautopilot.$auth.connection_token}`,
"Accept": `application/json`,
},
})
},
})