with Coinbase Developer Platform and Podio?
Emit new event for each new wallet event. See the documentation
Emit new events when a new application is created. See the documentation
Emit new events when a new item is created. See the documentation
Emit new events when an item is updated. See the documentation
Emit new events when a new organization created. See the documentation
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 Podio API opens a world of possibilities for managing tasks, projects, and team collaboration with ease. By harnessing the API through Pipedream, you can automate routine operations, synchronize data across different platforms, and craft custom workflows that facilitate real-time project management and enhance productivity. Whether it's updating leads in a CRM, managing a content calendar, or automating project status reports, the Podio API paired with Pipedream's serverless execution model allows for seamless integration with a vast array of services to streamline your work processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
podio: {
type: "app",
app: "podio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.podio.com/user`,
headers: {
Authorization: `Bearer ${this.podio.$auth.oauth_access_token}`,
},
})
},
})