DPD is an all-in-one shopping cart and digital fulfillment service to sell downloads. Serving thousands of stores, DPD processes and delivers millions worth of downloads each year.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
The DPD API provides a gateway to manage and automate digital product sales. By integrating with Pipedream, you can craft serverless workflows that interact with your DPD account, harnessing the ability to automate tasks like creating products, updating customer details, or reacting to new sales in real-time. With Pipedream's ability to connect to a multitude of services, the DPD API can be part of a larger ecosystem, streamlining your e-commerce operations or enriching your customer data across platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dpd2: {
type: "app",
app: "dpd2",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getdpd.com/v2/storefronts`,
auth: {
username: `${this.dpd2.$auth.api_username}`,
password: `${this.dpd2.$auth.api_password}`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})