with Coinbase Developer Platform and SumUp?
Emit new event for each new wallet event. See the documentation
Emit new event when a new transaction is posted in SumUp. See the documenation
Lists detailed history of all transactions associated with the merchant profile. See the documenation
import { Coinbase, Wallet } from "@coinbase/coinbase-sdk";
export default defineComponent({
props: {
coinbase_developer_platform: {
type: "app",
app: "coinbase_developer_platform",
}
},
async run({ steps, $ }) {
const apiKeyName = this.coinbase_developer_platform.$auth.api_key_id;
const privateKey = this.coinbase_developer_platform.$auth.secret_key
Coinbase.configure({ apiKeyName: apiKeyName, privateKey: privateKey });
return Wallet.listWallets();
},
})
The SumUp API allows you to integrate your payment processing operations with SumUp's payment platform, creating seamless financial transactions for your business. With Pipedream, you can automate payment flows, sync transaction data with other tools, and build custom notifications based on payment events. You can use Pipedream’s serverless platform to trigger workflows on various SumUp events, process the data, and connect with countless other apps to extend functionality.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sumup: {
type: "app",
app: "sumup",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sumup.com/v0.1/me`,
headers: {
Authorization: `Bearer ${this.sumup.$auth.oauth_access_token}`,
},
})
},
})