Thanks.io

Direct Mail Sent Digitally

Integrate the Thanks.io API with the Airtable (OAuth) API

Setup the Thanks.io API trigger to run a workflow which integrates with the Airtable (OAuth) API. Pipedream's integration platform allows you to integrate Thanks.io and Airtable (OAuth) remarkably fast. Free for developers.

Add Recipient with Thanks.io API on New Field from Airtable API
Airtable (OAuth) + Thanks.io
 
Try it
Add Recipient with Thanks.io API on New Modified or Deleted Records (Instant) from Airtable (OAuth) API
Airtable (OAuth) + Thanks.io
 
Try it
Add Recipient with Thanks.io API on New or Modified Field from Airtable (OAuth) API
Airtable (OAuth) + Thanks.io
 
Try it
Add Recipient with Thanks.io API on New or Modified Records from Airtable API
Airtable (OAuth) + Thanks.io
 
Try it
Add Recipient with Thanks.io API on New or Modified Records in View from Airtable (OAuth) API
Airtable (OAuth) + Thanks.io
 
Try it
New Delivery from the Thanks.io API

Emit new event for each new order delivered.

 
Try it
New Order from the Thanks.io API

Emit new event for each new order placed.

 
Try it
New Recipient from the Thanks.io API

Emit new event for each new recipient is added to a mailing list.

 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
New Modified or Deleted Records (Instant) from the Airtable (OAuth) API

Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation

 
Try it
Add Recipient with the Thanks.io API

Add a recipient to a mailing list. See the docs here

 
Try it
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Delete Recipient with the Thanks.io API

Delete a recipient from a mailing list. See the docs here

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Create Multiple Records with the Airtable (OAuth) API

Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation

 
Try it

Overview of Thanks.io

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:

  • Create customizable message tokens that your team can send to recognize
    individual accomplishments
  • Reward your users with token-based payments for a job well done
  • Track the performance of each user and reward them in real-time
  • Easily create promo codes to give thanks to your team
  • Issue holiday tokens as a way of saying thanks

Examples of what you can build using the thanks.io API:

  • Employee recognition programs
  • Client loyalty programs
  • Incentive programs
  • Referral programs
  • Gift giving programs

Connect Thanks.io

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Overview of Airtable (OAuth)

Using the Airtable API, you can build applications that can:

  • Create and manage databases
  • Add, update, and delete records
  • Search for records
  • Sort and filter records
  • Display records in a variety of ways
  • Import and export data

Connect Airtable (OAuth)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    airtable_oauth: {
      type: "app",
      app: "airtable_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airtable.com/v0/meta/whoami`,
      headers: {
        Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})