with LimoExpress and Jobnimbus?
Emit new event when a customer creates a new limo booking. See the documentation
Emit new events when a new activity created. See the docs
Emit new events when a new contact is created. See the docs
Emit new events when a contact is deleted. See the docs
Emit new events when a contact is updated. See the docs
Creates a new client with specified details. See the documentation
Creates a new limo booking with specified details. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
limoexpress: {
type: "app",
app: "limoexpress",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.limoexpress.me/api/integration/users`,
headers: {
Authorization: `Bearer ${this.limoexpress.$auth.api_key}`,
"accept": `*/*`,
},
params: {
page: `1`,
per_page: `10`,
},
})
},
})
The Jobnimbus API allows for the creation of complex workflows revolving around job and customer management within the construction and contracting industries. With this API, users can automate tasks such as updating job statuses, managing contacts, and creating tasks or appointments. This streamlines the process of moving a job from lead to completion, ensuring communication and record-keeping are seamless.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jobnimbus: {
type: "app",
app: "jobnimbus",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.jobnimbus.com/api1/contacts`,
headers: {
Authorization: `Bearer ${this.jobnimbus.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})