with Sales Simplify and SAP S/4HANA Cloud?
The Sales Simplify API, integrated within Pipedream's ecosystem, is a powerhouse for automating sales and customer relationship tasks. Utilize this API to streamline lead management, automate follow-ups, and track customer interactions systematically. With Pipedream, you can effortlessly create serverless workflows that link Sales Simplify with various other apps, providing a cohesive and efficient automation system. Harness the capability to trigger events based on new leads, update customer records in real-time, and generate data-driven insights that keep your sales pipeline flowing smoothly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sales_simplify: {
type: "app",
app: "sales_simplify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.salessimplify.com/api/v1/lead`,
headers: {
Authorization: `Bearer ${this.sales_simplify.$auth.api_key}`,
},
params: {
pageNo: `1`,
limit: `10`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sap_s_4hana_cloud: {
type: "app",
app: "sap_s_4hana_cloud",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.sap_s_4hana_cloud.$auth.api_url}/sap/opu/odata/sap/API_PLANNED_ORDERS/A_PlannedOrder`,
headers: {
"accept": `application/json`,
"apikey": `${this.sap_s_4hana_cloud.$auth.api_key}`,
},
params: {
"$top": `5`,
"$inlinecount": `allpages`,
"$orderby": `PlannedOrder`,
"$select": `PlannedOrder`,
},
})
},
})