Lime Go boosts sales. Lime Go is a sales tool filled with features for exceptional customer relationships. For you who want to sell smarter.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Lime Go API can be used to build a variety of applications, including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
lime_go: {
type: "app",
app: "lime_go",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.lime-go.com/v1/ping`,
headers: {
"Authorization": `go-api: ${this.lime_go.$auth.api_key}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})