with VectorShift and Selling Partner API (SP-API)?
Emit new event when a knowledge base is created in Vectorshift.
Emit new event when a new pipeline is created in VectorShift.
Emit new event when a new inbound shipment to FBA is created. See the documentation
Emit new event when a new order is created in Amazon Seller Central. See the documentation
Adds data to a knowledge base in VectorShift. See the documentation
Retrieves inventory summaries from Amazon fulfillment centers to monitor stock availability. See the documentation
Creates a new pipeline in VectorShift. See the documentation
Retrieves a list of orders based on a specified date range, buyer email, or order ID. See the documentation
Requests reports on sales, inventory, and fulfillment performance. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
vectorshift: {
type: "app",
app: "vectorshift",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.vectorshift.ai/v1/pipelines`,
headers: {
Authorization: `Bearer ${this.vectorshift.$auth.api_key}`,
},
})
},
})
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}`,
},
})
},
})