PublisherKit helps you to auto-generate News Articles, Social Media Visuals and more.
Emit new event when a new template is created within your PublisherKit account. See the documentation
Emit new event for each attachment in a message received. This source is capped at 100 max new messages per run.
Emit new event when an email matching the search criteria is received. This source is capped at 100 max new messages per run.
Generates a new image within PublisherKit. See the documentation
Create a draft from your Google Workspace email account. See the documentation
Download an attachment by attachmentId to the /tmp directory. See the documentation
The PublisherKit API offers a suite of tools for digital content management, including the ability to manage and distribute various multimedia content like articles, videos, and podcasts. Integrating this API with Pipedream allows you to automate content workflows, sync data across platforms, and react to events in real-time. For instance, you could automatically publish scheduled content, analyze content performance, or update cross-platform content statuses.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
publisherkit: {
type: "app",
app: "publisherkit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.publisherkit.com/v1/auth`,
headers: {
Authorization: `Bearer ${this.publisherkit.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
By connecting your personal Gmail account to Pipedream, you'll be able to incorporate email into whatever you're building with any of the thousands of apps that are available on Pipedream.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gmail: {
type: "app",
app: "gmail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.gmail.$auth.oauth_access_token}`,
},
})
},
})