Ghost.org (Admin API)

Open source publishing platform

Integrate the Ghost.org (Admin API) API with the Airtable (OAuth) API

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

Create Comment with Airtable API on Member Deleted (Instant) from Ghost.org (Admin API) API
Ghost.org (Admin API) + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on Member Updated (Instant) from Ghost.org (Admin API) API
Ghost.org (Admin API) + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Member Created (Instant) from Ghost.org (Admin API) API
Ghost.org (Admin API) + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on Page Published (Instant) from Ghost.org (Admin API) API
Ghost.org (Admin API) + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on Post Published (Instant) from Ghost.org (Admin API) API
Ghost.org (Admin API) + Airtable (OAuth)
 
Try it
Member Deleted (Instant) from the Ghost.org (Admin API) API

Emit new event each time a member is deleted from a site.

 
Try it
Member Updated (Instant) from the Ghost.org (Admin API) API

Emit new event each time a member is updated.

 
Try it
New Member Created (Instant) from the Ghost.org (Admin API) API

Emit new event for each new member added to a site.

 
Try it
Page Published (Instant) from the Ghost.org (Admin API) API

Emit new event for each new page published on a site.

 
Try it
Post Published (Instant) from the Ghost.org (Admin API) API

Emit new event for each new post published on a site.

 
Try it
Create Member with the Ghost.org (Admin API) API

Create a new member in Ghost. 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
Create post with the Ghost.org (Admin API) API

Create a post. See the documentation.

 
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 Ghost.org (Admin API)

With the Ghost.org API, you can build a wide range of applications and
integrations. Here are some examples:

  • A desktop or mobile app for managing your Ghost blog
  • A Ghost-powered website or custom CMS
  • An integration with another service or platform (such as Zapier or IFTTT)
  • A tool or script for automating tasks with Ghost

Connect Ghost.org (Admin API)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module.exports = defineComponent({
  props: {
    ghost_org_admin_api: {
      type: "app",
      app: "ghost_org_admin_api",
    }
  },
  async run({steps, $}) {
    const GhostAdminAPI = require('@tryghost/admin-api');
    const api = new GhostAdminAPI({
        url: this.ghost_org_admin_api.$auth.admin_api_url,
        key: this.ghost_org_admin_api.$auth.admin_api_key,
        version: 'v3'
    });
    return await api.users.browse()
  },
})

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}`,
      },
    })
  },
})