The ultimate ecommerce accelerator for global growth. Fast, easy, risk-free expansion into 240+ destinations. Accelerate. Simplify. Optimize.
Emit new event for each message posted to one or more channels in a Discord server
Emit new event when a customer successfully completes an order.
Emit new event for each command posted to one or more channels in a Discord server
Emit new event each time the payment status of an order is updated in Digital River.
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
Send a simple or structured message (using embeds) to a Discord channel
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 Discord API interacts seamlessly with Pipedream, empowering you to craft customized automations and workflows for your Discord server. With this powerful integration, you can automate tasks like message posting, user management, and notifications, based on a myriad of triggers and actions from different apps. These automations can enhance the Discord experience for community moderators and members, by synchronizing with external tools, organizing community engagement, and streamlining notifications.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
discord: {
type: "app",
app: "discord",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://discord.com/api/users/@me`,
headers: {
Authorization: `Bearer ${this.discord.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})