Mastodon

Mastodon is a decentralized social network made up of independent servers organized around specific themes, topics, or interests.

Integrate the Mastodon API with the Airtable (OAuth) API

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

Bookmark Status with Mastodon API on New Field from Airtable (OAuth) API
Airtable (OAuth) + Mastodon
 
Try it
Bookmark Status with Mastodon API on New Modified or Deleted Records (Instant) from Airtable (OAuth) API
Airtable (OAuth) + Mastodon
 
Try it
Bookmark Status with Mastodon API on New or Modified Field from Airtable (OAuth) API
Airtable (OAuth) + Mastodon
 
Try it
Bookmark Status with Mastodon API on New or Modified Records from Airtable (OAuth) API
Airtable (OAuth) + Mastodon
 
Try it
Bookmark Status with Mastodon API on New or Modified Records in View from Airtable (OAuth) API
Airtable (OAuth) + Mastodon
 
Try it
New Status from the Mastodon API

Emit new event when a new status is posted to your Profile. See the docs here

 
Try it
New Status Bookmarked from the Mastodon API

Emit new event when the specified status is bookmarked. See the docs here

 
Try it
New Status Boosted from the Mastodon API

Emit new event when the specified status is boosted. See the docs here

 
Try it
New Status Favorited from the Mastodon API

Emit new event when the specified status is favorited. See the docs here

 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
Bookmark Status with the Mastodon API

Privately bookmark a status. 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
Boost Status with the Mastodon API

Reshare a status on your own profile. 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
Delete Status with the Mastodon API

Delete one of your own statuses. See the docs here

 
Try it

Connect Mastodon

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: {
    mastodon: {
      type: "app",
      app: "mastodon",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.mastodon.$auth.site_domain}/api/v1/apps/verify_credentials`,
      headers: {
        Authorization: `Bearer ${this.mastodon.$auth.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}`,
      },
    })
  },
})