Wordpress.com

Hosted Wordpress

Integrate the Wordpress.com API with the Data Stores API

Setup the Wordpress.com API trigger to run a workflow which integrates with the Data Stores API. Pipedream's integration platform allows you to integrate Wordpress.com and Data Stores remarkably fast. Free for developers.

Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Append to record with the Data Stores API

Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.

 
Try it
Check for existence of key with the Data Stores API

Check if a key exists in your Pipedream Data Store or create one if it doesn't exist.

 
Try it
Delete a single record with the Data Stores API

Delete a single record in your Pipedream Data Store.

 
Try it

Overview of Wordpress.com

WordPress.com allows developers to create powerful applications and websites,
using the WordPress.com API. With the WordPress.com API, developers can create
custom applications and websites that integrate with the WordPress.com platform
in meaningful ways.

The WordPress.com API is accessible via REST, which allows developers to
interact with WordPress.com in a variety of ways. Additionally, developers can
extend the WordPress.com platform by creating custom plugins and themes.

Here are some examples of what you can build with the Wordpress.com API:

  • Custom blog or website
  • Online store
  • Custom dashboard for managing content
  • Custom user profiles
  • Analytics and reporting tools
  • Social media integration
  • Search engine optimization
  • Email campaigns
  • Custom payment gateway solutions
  • Content marketing platforms
  • Advertising networks

Connect Wordpress.com

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: {
    wordpress_com: {
      type: "app",
      app: "wordpress_com",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://public-api.wordpress.com/rest/v1.1/me`,
      headers: {
        Authorization: `Bearer ${this.wordpress_com.$auth.oauth_access_token}`,
      },
    })
  },
})

Overview of Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})