What do you want to automate

with Amazon Selling Partner and GitHub?

Prompt, edit and deploy AI agents that connect to Amazon Selling Partner, GitHub 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
Create Issue with GitHub API on New Inbound Shipment to FBA Created from Amazon Selling Partner API
Amazon Selling Partner + GitHub
 
Try it
Create Issue with GitHub API on New Order Created from Amazon Selling Partner API
Amazon Selling Partner + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Inbound Shipment to FBA Created from Amazon Selling Partner API
Amazon Selling Partner + GitHub
 
Try it
Search Issues and Pull Requests with GitHub API on New Order Created from Amazon Selling Partner API
Amazon Selling Partner + GitHub
 
Try it
Check FBA Inventory Levels with Amazon Selling Partner API on New Branch Created from GitHub API
GitHub + Amazon Selling Partner
 
Try it
New Inbound Shipment to FBA Created from the Amazon Selling Partner API

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

 
Try it
New Order Created from the Amazon Selling Partner API

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

 
Try it
New Branch Created from the GitHub API

Emit new event when a branch is created.

 
Try it
New Card in Column (Classic Projects) from the GitHub API

Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status trigger. More information here

 
Try it
New Collaborator from the GitHub API

Emit new event when a collaborator is added

 
Try it
Check FBA Inventory Levels with the Amazon Selling Partner API

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

 
Try it
Create Issue with the GitHub API

Create a new issue in a Gihub repo. See the documentation

 
Try it
Fetch Orders by Date Range with the Amazon Selling Partner API

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

 
Try it
Search Issues and Pull Requests with the GitHub API

Find issues and pull requests by state and keyword. See the documentation

 
Try it
Generate Sales & Inventory Reports with the Amazon Selling Partner API

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

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

Connect Amazon Selling Partner

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}`,
      },
    })
  },
})

Overview of GitHub

The GitHub API is a powerful gateway to interaction with GitHub's vast web of data and services, offering a suite of endpoints to manipulate and retrieve information on repositories, pull requests, issues, and more. Harnessing this API on Pipedream, you can orchestrate automated workflows that respond to events in real-time, manage repository data, streamline collaborative processes, and connect GitHub with other services for a more integrated development lifecycle.

Connect GitHub

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    github: {
      type: "app",
      app: "github",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.github.com/user`,
      headers: {
        Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
        "X-GitHub-Api-Version": `2022-11-28`,
      },
    })
  },
})

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