← Sellercloud + Microsoft Outlook integrations

List Folders with Microsoft Outlook API on New Order Created from Sellercloud API

Pipedream makes it easy to connect APIs for Microsoft Outlook, Sellercloud and 2,500+ other apps remarkably fast.

Trigger workflow on
New Order Created from the Sellercloud API
Next, do this
List Folders with the Microsoft Outlook 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 Sellercloud trigger and Microsoft Outlook 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 Created trigger
    1. Connect your Sellercloud account
    2. Configure timer
  3. Configure the List Folders action
    1. Connect your Microsoft Outlook account
    2. Optional- Configure Max Results
  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 when a new order is created. [See the documentation](https://developer.sellercloud.com/dev-article/get-all-orders/)
Version:0.0.1
Key:sellercloud-new-order-created

Sellercloud Overview

The Sellercloud API taps into a robust e-commerce platform that streamlines multichannel sales operations, inventory management, and order fulfillment. By integrating Sellercloud with Pipedream, you can automate tasks like syncing inventory levels, managing orders, and updating product listings across various channels. With Pipedream's serverless platform, you can create workflows that react to events in Sellercloud or initiate actions based on triggers from other apps.

Trigger Code

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

export default {
  ...common,
  key: "sellercloud-new-order-created",
  name: "New Order Created",
  description: "Emit new event when a new order is created. [See the documentation](https://developer.sellercloud.com/dev-article/get-all-orders/)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  hooks: {
    async deploy() {
      const { Items: orders } = await this.sellercloud.listOrders({
        params: {
          pageSize: 25,
        },
      });
      if (!orders.length) {
        return;
      }
      this._setLastCreated(orders[0].CreatedOn);
      orders.forEach((order) => this.emitEvent(order));
    },
  },
  methods: {
    ...common.methods,
    _getLastCreated() {
      return this.db.get("lastCreated");
    },
    _setLastCreated(lastCreated) {
      this.db.set("lastCreated", lastCreated);
    },
    generateMeta(order) {
      return {
        id: order.ID,
        summary: `New Order ID ${order.ID}`,
        ts: Date.parse(order.CreatedOn),
      };
    },
    isLater(date1, date2) {
      return Date.parse(date1) > Date.parse(date2);
    },
    processEvents(orders) {
      const lastCreated = this._getLastCreated();
      let newLastCreated = lastCreated;

      for (const order of orders) {
        this.emitEvent(order);
        if (this.isLater(order.CreatedOn, newLastCreated)) {
          newLastCreated = order.CreatedOn;
        }
      }

      this._setLastCreated(newLastCreated);
    },
  },
  async run() {
    const lastCreated = this._getLastCreated();

    await this.paginateEvents({
      resourceFn: this.sellercloud.listOrders,
      params: {
        CreatedOnFrom: lastCreated,
      },
    });
  },
};

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
SellercloudsellercloudappThis component uses the Sellercloud app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
timer$.interface.timer

Trigger Authentication

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

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

About Sellercloud

E-commerce platform dedicated to helping online retailers meet the challenges of omnichannel selling.

Action

Description:Retrieves a list of all folders in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-mailfolders)
Version:0.0.4
Key:microsoft_outlook-list-folders

Microsoft Outlook Overview

The Microsoft Outlook API on Pipedream allows you to automate email-related tasks, manage calendars, and handle contacts effortlessly. With the API, you can trigger workflows on new emails, send emails programmatically, and synchronize calendars across platforms, among other functions. Pipedream's serverless platform facilitates the connection between Outlook and a myriad of other apps for efficient automation workflows.

Action Code

import microsoftOutlook from "../../microsoft_outlook.app.mjs";

export default {
  key: "microsoft_outlook-list-folders",
  name: "List Folders",
  description: "Retrieves a list of all folders in Microsoft Outlook. [See the documentation](https://learn.microsoft.com/en-us/graph/api/user-list-mailfolders)",
  version: "0.0.4",
  type: "action",
  props: {
    microsoftOutlook,
    maxResults: {
      propDefinition: [
        microsoftOutlook,
        "maxResults",
      ],
    },
  },
  async run({ $ }) {
    const items = this.microsoftOutlook.paginate({
      fn: this.microsoftOutlook.listFolders,
      args: {
        $,
      },
      max: this.maxResults,
    });

    const folders = [];
    for await (const item of items) {
      folders.push(item);
    }

    $.export("$summary", `Successfully retrieved ${folders.length} folder${folders.length != 1
      ? "s"
      : ""}.`);
    return folders;
  },
};

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
Microsoft OutlookmicrosoftOutlookappThis component uses the Microsoft Outlook app.
Max ResultsmaxResultsinteger

The maximum number of results to return

Action Authentication

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

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

User.Reademailoffline_accessopenidprofileMail.ReadWriteMail.SendMailboxSettings.ReadWriteIMAP.AccessAsUser.AllPOP.AccessAsUser.AllSMTP.SendCalendars.ReadWriteContacts.ReadWrite

About Microsoft Outlook

Microsoft Outlook lets you bring all your email accounts and calendars in one convenient spot.

More Ways to Connect Microsoft Outlook + Sellercloud

Adjust Inventory with Sellercloud API on New Calendar Event (Instant) from Microsoft Outlook API
Microsoft Outlook + Sellercloud
 
Try it
Adjust Inventory with Sellercloud API on New Contact Event (Instant) from Microsoft Outlook API
Microsoft Outlook + Sellercloud
 
Try it
Adjust Inventory with Sellercloud API on New Email Event (Instant) from Microsoft Outlook API
Microsoft Outlook + Sellercloud
 
Try it
Adjust Inventory with Sellercloud API on New Upcoming Calendar Event from Microsoft Outlook API
Microsoft Outlook + Sellercloud
 
Try it
Adjust Inventory with Sellercloud API on New Calendar Event Update (Instant) from Microsoft Outlook API
Microsoft Outlook + Sellercloud
 
Try it
Inventory Updated from the Sellercloud API

Emit new event when an item's inventory level changes. See the documentation

 
Try it
New Order Created from the Sellercloud API

Emit new event when a new order is created. See the documentation

 
Try it
New Attachment Received (Instant) from the Microsoft Outlook API

Emit new event when a new email containing one or more attachments arrives in a specified Microsoft Outlook folder.

 
Try it
New Contact Event (Instant) from the Microsoft Outlook API

Emit new event when a new Contact is created

 
Try it
New Email Event (Instant) from the Microsoft Outlook API

Emit new event when an email is received in specified folders.

 
Try it
Adjust Inventory with the Sellercloud API

Changes the inventory level of a specific product. See the documentation

 
Try it
Create Product with the Sellercloud API

Creates a new product. See the documentation

 
Try it
Update Order Status with the Sellercloud API

Modifies the status of an existing order or orders. See the documentation

 
Try it
Add Label to Email with the Microsoft Outlook API

Adds a label/category to an email in Microsoft Outlook. See the documentation

 
Try it
Approve Workflow with the Microsoft Outlook API

Suspend the workflow until approved by email. See the documentation

 
Try it

Explore Other Apps

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

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Premium
Salesforce
Salesforce
Cloud-based customer relationship management (CRM) platform that helps businesses manage sales, marketing, customer support, and other business activities, ultimately aiming to improve customer relationships and streamline operations.
Premium
HubSpot
HubSpot
HubSpot's CRM platform contains the marketing, sales, service, operations, and website-building software you need to grow your business.
Premium
Zoho CRM
Zoho CRM
Zoho CRM is an online Sales CRM software that manages your sales, marketing, and support in one CRM platform.
Premium
Stripe
Stripe
Stripe powers online and in-person payment processing and financial solutions for businesses of all sizes.
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Premium
WooCommerce
WooCommerce
WooCommerce is the open-source ecommerce platform for WordPress.
Premium
Snowflake
Snowflake
A data warehouse built for the cloud
Premium
MongoDB
MongoDB
MongoDB is an open source NoSQL database management program.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.