JobNimbus saves you time and money with robust project, contact, and task management tools wrapped in a simple interface.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Jobnimbus API can be used to create custom applications for managing job
information.
Some examples of what you can build using the Jobnimbus API include:
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`,
},
})
},
})
// 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
},
})