with HighLevel (API Key) and Amazon Selling Partner?
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
Retrieves inventory summaries from Amazon fulfillment centers to monitor stock availability. 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
Fetches detailed information about a specific order using its order ID. See the documentation
Fetches inbound shipment details to track stock movement and replenishment. See the documentation
The HighLevel API offers a suite of tools for customer relationship management, marketing automation, and business growth. Leveraging this API on Pipedream allows you to automate interactions with leads, manage contacts, and streamline communication workflows. This integration can help you track customer interactions, automate follow-ups, and sync data across platforms, ultimately improving productivity and customer engagement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gohighlevel: {
type: "app",
app: "gohighlevel",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.gohighlevel.com/v1/calendars/teams`,
headers: {
Authorization: `Bearer ${this.gohighlevel.$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}`,
},
})
},
})