with Instantly and DigitalRiver?
Emit new event when a new background job has completed. See the documentation
Emit new event when a customer successfully completes an order.
Emit new event when a new email is received. See the documentation
Emit new event each time the payment status of an order is updated in Digital River.
Emit new event when an activity occurs in your Instantly workspace.
Adds a lead or leads to a campaign for tracking or further actions. See the documentation
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
import { axios } from "@Pipedream/platform"
export default defineComponent({
props: {
instantly: {
type: "app",
app: "instantly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.instantly.ai/api/v2/accounts`,
headers: {
Authorization: `Bearer ${this.instantly.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})