Direct Mail Sent Digitally
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}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})