with Rentman and CATS?
Emit new event when a file is uploaded/updated. See the documentation
Emit new event when an activity related to a cat is created.
Emit new event when a contact related to a cat is created.
Creates a new item based on the specified type. See the documentation
Adds a specific candidate to a job pipeline in CATS. See the documentation
Searches for an item in the system using the item type as the filtering criteria. See the documentation
Create a new candidate in your CATS database. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
rentman: {
type: "app",
app: "rentman",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.rentman.net/contacts`,
headers: {
Authorization: `Bearer ${this.rentman.$auth.api_token}`,
"Content-Type": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cats: {
type: "app",
app: "cats",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.catsone.com/v3/users`,
headers: {
"Authorization": `Token ${this.cats.$auth.api_key}`,
},
})
},
})