with Transistor.fm and Pingback?
Add a subscriber to segmentation lists by email See the documentation
Remove a subscriber from a segmentation list by email See the documentation
Transistor.fm is a platform offering podcast hosting and analytics services. With its API, you can automate the upload and management of podcast episodes, access detailed analytics, and manage users. When interfaced with Pipedream, Transistor.fm's API enables the creation of tailored, serverless workflows that can streamline your podcasting process, engage your audience effectively, and integrate with your digital ecosystem, from social media to email marketing platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
transistor_fm: {
type: "app",
app: "transistor_fm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.transistor.fm/v1`,
headers: {
"x-api-key": `${this.transistor_fm.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pingback: {
type: "app",
app: "pingback",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://connect.pingback.com/v1/subscriber/${this.pingback.$auth.email}`,
headers: {
"x-api-key": `${this.pingback.$auth.api_key}`,
},
})
},
})