The ultimate ecommerce accelerator for global growth. Fast, easy, risk-free expansion into 240+ destinations. Accelerate. Simplify. Optimize.
Cancels an existing order in Digital River. See the documentation
Creates a new product on the Digital River platform. See the documentation
Updates the information for a customer in Digital River. See the documentation
The DigitalRiver API lets you manage e-commerce activities like orders, payments, and customer information. On Pipedream, you can harness this API to create automated workflows that integrate with other apps, react to events, process transactions, and handle global e-commerce complexities. Pipedream's serverless platform enables you to build and execute these workflows quickly, without setting up infrastructure, and to connect DigitalRiver with countless other services for a seamless e-commerce ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
digitalriver: {
type: "app",
app: "digitalriver",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.digitalriver.com/customers`,
headers: {
Authorization: `Bearer ${this.digitalriver.$auth.api_key}`,
},
})
},
})
The SWAPI - Star Wars API is a treasure trove of structured data from the Star Wars universe. It's a go-to resource for fetching information about planets, spaceships, vehicles, people, films, and species from the iconic franchise. Using Pipedream, you can harness this data to create automations and workflows that trigger based on specific criteria from SWAPI. For instance, you could set up a workflow that notifies you when new data is added, enrich customer profiles with their favorite Star Wars characters, or even use it for trivia games by pulling random facts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swapi: {
type: "app",
app: "swapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://swapi.dev/api/films/1/`,
})
},
})