Direct Mail Sent Digitally
Emit new event for each new recipient is added to a mailing list.
Emit an event for each new or modified record in a table
Emit an event for each new or modified record in a view
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.
Retrieve records from a table with automatic pagination. Optionally sort and filter results.
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}`,
},
})
},
})
Using the Airtable API, you can build applications that can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable: {
type: "app",
app: "airtable",
},
baseId: {
type: "$.airtable.baseId",
appProp: "airtable",
},
tableId: {
type: "$.airtable.tableId",
baseIdProp: "baseId",
},
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/${this.baseId}/${this.tableId}`,
headers: {
Authorization: `Bearer ${this.airtable.$auth.api_key}`,
"accept": `application/json`,
},
})
}
})