with GoFormz and Thanks.io?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
goformz: {
type: "app",
app: "goformz",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.goformz.com/v2/formz`,
headers: {
Authorization: `Bearer ${this.goformz.$auth.oauth_access_token}`,
},
})
},
})
The Thanks.io API lets you automate the sending of personalized postcards and letters. This API can be harnessed to craft tailored outreach campaigns, customer appreciation notes, or event-based mailings. By integrating with Pipedream, you can create intelligent, event-driven workflows that trigger mailings based on user activity, data changes, or milestones achieved in other apps, streamlining the way businesses and developers connect with their audiences physically.
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}`,
},
})
},
})