What do you want to automate

with DHL and Selling Partner API (SP-API)?

Prompt, edit and deploy AI agents that connect to DHL, Selling Partner API (SP-API) and 2,500+ other apps in seconds.

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
New Inbound Shipment to FBA Created from the Selling Partner API (SP-API) API

Emit new event when a new inbound shipment to FBA is created. See the documentation

 
Try it
New Order Created from the Selling Partner API (SP-API) API

Emit new event when a new order is created in Amazon Seller Central. See the documentation

 
Try it
Check FBA Inventory Levels with the Selling Partner API (SP-API) API

Retrieves inventory summaries from Amazon fulfillment centers to monitor stock availability. See the documentation

 
Try it
Fetch Orders by Date Range with the Selling Partner API (SP-API) API

Retrieves a list of orders based on a specified date range, buyer email, or order ID. See the documentation

 
Try it
Generate Sales & Inventory Reports with the Selling Partner API (SP-API) API

Requests reports on sales, inventory, and fulfillment performance. See the documentation

 
Try it
Get Order Details with the Selling Partner API (SP-API) API

Fetches detailed information about a specific order using its order ID. See the documentation

 
Try it
List Inbound Shipments with the Selling Partner API (SP-API) API

Fetches inbound shipment details to track stock movement and replenishment. See the documentation

 
Try it
Integrate the DHL API with the Selling Partner API (SP-API) API
Setup the DHL API trigger to run a workflow which integrates with the Selling Partner API (SP-API) API. Pipedream's integration platform allows you to integrate DHL and Selling Partner API (SP-API) remarkably fast. Free for developers.

Connect DHL

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    dhl: {
      type: "app",
      app: "dhl",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.dhl.$auth.api_url}/track/shipments`,
      headers: {
        "content-type": `application/json`,
        "dhl-api-key": `${this.dhl.$auth.api_key}`,
      },
      params: {
        trackingNumber: `${this.dhl.$auth.tracking_number}`,
      },
    })
  },
})

Connect Selling Partner API (SP-API)

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: {
    amazon_selling_partner: {
      type: "app",
      app: "amazon_selling_partner",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://sellingpartnerapi-na.amazon.com/inbound/fba/2024-03-20/inboundPlans`,
      headers: {
        "x-amz-access-token": `${this.amazon_selling_partner.$auth.oauth_access_token}`,
      },
    })
  },
})

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