JobNimbus saves you time and money with robust project, contact, and task management tools wrapped in a simple interface.
Emit new event when a (classic) project card is created or moved to a specific column. For Projects V2 use New Issue with Status
trigger. More information here
Emit new events when collaborators are added to a repo
Find issues and pull requests by state and keyword. See docs here
Create or update a file in a repository. This will replace an existing file. See docs here
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`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
github: {
type: "app",
app: "github",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.github.com/user`,
headers: {
Authorization: `Bearer ${this.github.$auth.oauth_access_token}`,
"X-GitHub-Api-Version": `2022-11-28`,
},
})
},
})