with Nuclino and Taleez?
Emit new event when a new item or collection is created in Nuclino.
Emit new event when an item or collection is updated in Nuclino.
Emit new event when a candidate is added in Taleez. See the documentation
Emit new event when a job listing is created in Taleez. See the documentation
Create a new item or collection in Nuclino. See the documentation
Links an existing candidate to a job offer. See the documentation
Search for items or collections in Nuclino. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nuclino: {
type: "app",
app: "nuclino",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.nuclino.com/v0/teams`,
headers: {
"authorization": `${this.nuclino.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
taleez: {
type: "app",
app: "taleez",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.taleez.com/0/units`,
headers: {
"x-taleez-api-secret": `${this.taleez.$auth.secret_key}`,
"accept": `application/json;charset=UTF-8`,
},
params: {
page: `0`,
pageSize: `100`,
},
})
},
})