ecwid

Online store platform

Go to site

ecwid API Integrations

Build and run workflows using the ecwid API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the ecwid API, you can build applications to:

  • Display and search products
  • View customer info and order history
  • Update inventory
  • Calculate shipping costs
  • Apply coupons and discounts
  • Plus much more!
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: {
    ecwid: {
      type: "app",
      app: "ecwid",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://app.ecwid.com/api/v3/${this.ecwid.$auth.storeId}/profile`,
      headers: {
        Authorization: `Bearer ${this.ecwid.$auth.oauth_access_token}`,
      },
    })
  },
})
Ecwid Get Order with ecwid API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + ecwid
 
Try it
Send Message (Advanced) with Discord Webhook API on New Ecwid Paid Orders from ecwid API
ecwid + Discord Webhook
 
Try it
Ecwid Get Order with ecwid API on New Item in Feed from RSS API
RSS + ecwid
 
Try it
Ecwid Get Order with ecwid API on New Message in Channel from Discord Bot API
Discord Bot + ecwid
 
Try it
Ecwid Get Order with ecwid API on New Submission from Typeform API
Typeform + ecwid
 
Try it
New Ecwid Paid Orders from the ecwid API

Search for new orders which are PAID and AWAITING_PROCESSING. Emits events for each order and sets order fulfilment status to PROCESSING

 
Try it
Ecwid Get Order with the ecwid API

Get Ecwid Order by Order ID. Details of the structure are present here.

 
Try it
Ecwid Update Order Status with the ecwid API

Update the Status of an Ecwid Order. Makes use of the Update Order API.

 
Try it

Authentication

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

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

read_catalogupdate_customersread_customerscreate_catalogupdate_subscriptionsread_ordersread_discount_couponscreate_discount_couponsupdate_catalogpublic_storefrontread_invoicesupdate_discount_couponscreate_ordersread_subscriptionsupdate_orderscustomize_storefrontread_store_profilecreate_invoicesupdate_store_profiledelete_invoicescreate_customers
OAuth Request Configurations:
  1. authorization
    GEThttps://my.ecwid.com/api/oauth/authorize?client_id={{oauth.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    GEThttps://my.ecwid.com/api/oauth/token?client_id={{oauth.client_id}}&client_secret={{oauth.client_secret}}&code={{oauth.code}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code