Wise, Formerly TransferWise: Transfer money or spend abroad
Creates and publishes a new post or creates a new post as a draft. See the docs here.
Permanently removes a post (the deleted post cannot be restored anymore) See the docs here.
The Wise API enables seamless integration of international bank transfers into applications, offering real-time currency exchange rates, multi-currency account management, and compliance checks. With Pipedream, you can leverage Wise to automate financial workflows, sync transaction data with accounting software, and trigger actions based on payment events, all while maintaining security and reducing the manual overhead often involved in international finances.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wise: {
type: "app",
app: "wise",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.transferwise.com/v1/profiles`,
headers: {
Authorization: `Bearer ${this.wise.$auth.api_token}`,
},
})
},
})
The Blogger API grants the power to manage your blog's content, comments, and settings programmatically. With Pipedream, you can automate content creation, streamline publishing workflows, and integrate your blog with a multitude of other services to expand its capabilities. Think real-time content updates from social media inputs, analytics-driven publishing, or automated content syndication. Harness the Blogger API on Pipedream to craft dynamic blogging ecosystems that respond to your audience's engagement and your creative inputs, keeping your content fresh and your operations efficient.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
blogger: {
type: "app",
app: "blogger",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/blogger/v3/users/self`,
headers: {
Authorization: `Bearer ${this.blogger.$auth.oauth_access_token}`,
},
})
},
})