Install WP Maps and gain the ability to highlight your products and stores to increase brand awareness.
Emit new event when a new product is created in WP Maps. See the documentation
Emit new event when a new store is created in WP Maps. See the documentation
Emit new event when a new column is added to a table. See the documentation
Emit new event when a row is added or modified. See the documentation
Emit new event when a new row is added to a table. See the documentation
The WP Maps API is a tool that enables you to integrate interactive maps into WordPress sites. You can use it to display custom markers, layers, and various map providers within your WordPress pages. With Pipedream, you can create serverless workflows that leverage the WP Maps API to automate map-related tasks. You could, for example, synchronize map data with external databases, send notifications when a new marker is added, or dynamically update maps based on user interactions or other triggers.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
wp_maps: {
type: "app",
app: "wp_maps",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://svr.wpmaps.net/v1/products/all`,
params: {
client_id: `${this.wp_maps.$auth.client_id}`,
access_token: `${this.wp_maps.$auth.access_token}`,
},
})
},
})
On Pipedream, you can leverage the PostgreSQL app to create workflows that automate database operations, synchronize data across platforms, and react to database events in real-time. Think handling new row entries, updating records from webhooks, or even compiling reports on a set schedule. Pipedream's serverless platform provides a powerful way to connect PostgreSQL with a variety of apps, enabling you to create tailored automation that fits your specific needs.
import postgresql from "@pipedream/postgresql"
export default defineComponent({
props: {
postgresql,
},
async run({ steps, $ }) {
// Component source code:
// https://github.com/PipedreamHQ/pipedream/tree/master/components/postgresql
const queryObj = {
text: "SELECT NOW()",
values: [], // Ignored since query does not contain placeholders
};
return await this.postgresql.executeQuery(queryObj);
},
})