← WooCommerce + Podio integrations

Create an Item with Podio API on New Order Event (Instant) from WooCommerce API

Pipedream makes it easy to connect APIs for Podio, WooCommerce and 2,500+ other apps remarkably fast.

Trigger workflow on
New Order Event (Instant) from the WooCommerce API
Next, do this
Create an Item with the Podio API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a WooCommerce trigger and Podio action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the New Order Event (Instant) trigger
    1. Connect your WooCommerce account
    2. Select one or more Event topics
  3. Configure the Create an Item action
    1. Connect your Podio account
    2. Select a Organization ID
    3. Select a Space ID
    4. Select a App ID
    5. Optional- Configure Tags
    6. Optional- Configure Reminder
    7. Optional- Configure File IDs
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event each time the specified order event(s) occur
Version:0.0.4
Key:woocommerce-new-order-event

WooCommerce Overview

WooCommerce is a customizable, open-source eCommerce platform built on WordPress. With the WooCommerce API, you can tap into the heart of your eCommerce store to read, create, update, and delete products, orders, and customers. On Pipedream, you can harness this API to automate routine tasks, sync data across platforms, and enhance customer experiences. By connecting WooCommerce to a wide array of apps and services, you can streamline operations, trigger personalized marketing, and analyze your sales data with greater ease.

Trigger Code

import common from "../common/base.mjs";
import sampleEmit from "./test-event.mjs";

export default {
  ...common,
  key: "woocommerce-new-order-event",
  name: "New Order Event (Instant)",
  description: "Emit new event each time the specified order event(s) occur",
  version: "0.0.4",
  type: "source",
  dedupe: "unique",
  methods: {
    ...common.methods,
    async getSampleEvents({ perPage }) {
      return this.woocommerce.listOrders({
        per_page: perPage,
        orderby: "date",
      });
    },
    getTopic(topicType) {
      return `order.${topicType}`;
    },
    generateMeta(eventType, {
      id, date_modified: dateModified,
    }) {
      const ts = Date.parse(dateModified);
      return {
        id: `${id}${ts}`,
        summary: `Order ID: ${id} ${eventType}`,
        ts,
      };
    },
  },
  sampleEmit,
};

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
WooCommercewoocommerceappThis component uses the WooCommerce app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.
Event topicstopicsstring[]Select a value from the drop down menu:createdupdateddeleted

Trigger Authentication

WooCommerce uses API keys for authentication. When you connect your WooCommerce account, Pipedream securely stores the keys so you can easily authenticate to WooCommerce APIs in both code and no-code steps.

About WooCommerce

WooCommerce is the open-source ecommerce platform for WordPress.

Action

Description:Adds a new item to the given app. [See the documentation](https://developers.podio.com/doc/items/add-new-item-22362)
Version:0.0.4
Key:podio-create-item

Podio Overview

The Podio API opens a world of possibilities for managing tasks, projects, and team collaboration with ease. By harnessing the API through Pipedream, you can automate routine operations, synchronize data across different platforms, and craft custom workflows that facilitate real-time project management and enhance productivity. Whether it's updating leads in a CRM, managing a content calendar, or automating project status reports, the Podio API paired with Pipedream's serverless execution model allows for seamless integration with a vast array of services to streamline your work processes.

Action Code

import common from "../common/common-item.mjs";

const props = common.props;
delete props.itemId;

export default {
  type: "action",
  key: "podio-create-item",
  version: "0.0.4",
  name: "Create an Item",
  description: "Adds a new item to the given app. [See the documentation](https://developers.podio.com/doc/items/add-new-item-22362)",
  ...common,
  props,
  async run ({ $ }) {
    const fields = await this.getFields();
    const reminder = this.reminder ?
      {
        remind_delta: this.reminder,
      } :
      this.reminder;
    const resp = await this.app.createItem({
      $,
      appId: this.appId,
      data: {
        fields,
        tags: this.tags,
        reminder,
        file_ids: this.fileIds,
      },
    });
    $.export("$summary", `The item has been created. (ID: ${resp.item_id}, Title: ${resp.title})`);
    return resp;
  },
};

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
PodioappappThis component uses the Podio app.
Organization IDorgIdstringSelect a value from the drop down menu.
Space IDspaceIdstringSelect a value from the drop down menu.
App IDappIdstringSelect a value from the drop down menu.
Tagstagsstring[]

The tags to put on the item

Reminderreminderinteger

Minutes to remind before the due date

File IDsfileIdsstring[]

Temporary files that have been uploaded and should be attached to this item

Action Authentication

Podio uses OAuth authentication. When you connect your Podio account, Pipedream will open a popup window where you can sign into Podio and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Podio API.

Pipedream requests the following authorization scopes when you connect your account:

global:all

About Podio

Platform for creating no code solutions and automate workflows

More Ways to Connect Podio + WooCommerce

Create an Item with Podio API on New Coupon Event (Instant) from WooCommerce API
WooCommerce + Podio
 
Try it
Create an Item with Podio API on New Customer Event (Instant) from WooCommerce API
WooCommerce + Podio
 
Try it
Create an Item with Podio API on New Product Event (Instant) from WooCommerce API
WooCommerce + Podio
 
Try it
Create Status with Podio API on New Coupon Event (Instant) from WooCommerce API
WooCommerce + Podio
 
Try it
Create Status with Podio API on New Customer Event (Instant) from WooCommerce API
WooCommerce + Podio
 
Try it
New Coupon Event (Instant) from the WooCommerce API

Emit new event each time the specified coupon event(s) occur

 
Try it
New Customer Event (Instant) from the WooCommerce API

Emit new event each time the specified customer event(s) occur

 
Try it
New Order Event (Instant) from the WooCommerce API

Emit new event each time the specified order event(s) occur

 
Try it
New Product Event (Instant) from the WooCommerce API

Emit new event each time the specified product event(s) occur

 
Try it
New Application Created from the Podio API

Emit new events when a new application is created. See the documentation

 
Try it
Create Customer with the WooCommerce API

Creates a new customer. See the docs

 
Try it
Create Order with the WooCommerce API

Creates a new order. See the docs

 
Try it
Create Product with the WooCommerce API

Creates a new product. See the docs

 
Try it
Get Customer with the WooCommerce API

Retrieve a specific customer. See the docs

 
Try it
Get Order with the WooCommerce API

Retrieve a specific order. See the docs

 
Try it

Explore Other Apps

1
-
0
of
2,500+
apps by most popular