Allowing marketers to create dynamic and personalized content for your email campaigns.
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Emit new events when collaborators are added to a repo
NiftyImages is an easy-to-use API for building custom images, GIFs, and videos
for all your online needs. You can create, manage, and personalize your media
for any platform, from emails and advertising campaigns to webpages and emails.
With just a few lines of code, you can create stunning and unique visuals for
your project or product.
Here are some examples of what you can build using the NiftyImages API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
niftyimages: {
type: "app",
app: "niftyimages",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.niftyimages.com/v1/Widgets`,
headers: {
"ApiKey": `${this.niftyimages.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})