with Transcript Downloader and Pitchlane?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
transcript_downloader: {
type: "app",
app: "transcript_downloader",
}
},
async run({steps, $}) {
const data = {
"url": `{youtube_channel_profile_url}`,
}
return await axios($, {
method: "post",
url: `https://dashboard.transcriptdownloader.com/api/channel/profile`,
headers: {
Authorization: `Bearer ${this.transcript_downloader.$auth.api_token}`,
},
data,
})
},
})
The Pitchlane API enables users to automate and integrate media planning and buying processes. This API can streamline the creation, management, and optimization of advertising campaigns across various channels. By utilizing Pitchlane within Pipedream, users can connect their media planning tools with other business systems (like CRM, analytics, or communication platforms), automate repetitive tasks, and orchestrate complex workflows that respond to real-time data changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pitchlane: {
type: "app",
app: "pitchlane",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.pitchlane.com/api/public/v1/campaigns`,
headers: {
"accept": `application/json`,
"X-API-Key": `${this.pitchlane.$auth.api_key}`,
},
})
},
})