with Dungeon Fighter Online and Sales Simplify?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dungeon_fighter_online: {
type: "app",
app: "dungeon_fighter_online",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.dfoneople.com/df/servers`,
params: {
apikey: `${this.dungeon_fighter_online.$auth.api_key}`,
},
})
},
})
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`,
},
})
},
})