Direct Mail Sent Digitally
Emit new event for each new recipient is added to a mailing list.
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
thanks.io provides an API that will help you recognize and reward your
employees, customers, and partners. With thanks.io, you can quickly and easily
create personalized tokens of appreciation with messages and funds.
Thanks.io offers powerful API features that let you create custom recognition
experiences for your clients and employees. With API calls, you can:
Examples of what you can build using the thanks.io API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
thanks_io: {
type: "app",
app: "thanks_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.thanks.io/api/v2/ping`,
headers: {
Authorization: `Bearer ${this.thanks_io.$auth.oauth_access_token}`,
},
})
},
})
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`,
},
})
},
})