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}`,
},
})
},
})
Adds a specific candidate to a job pipeline in CATS. See the documentation
Create a new candidate in your CATS database. See the documentation
CATS uses API keys for authentication. When you connect your CATS account, Pipedream securely stores the keys so you can easily authenticate to CATS APIs in both code and no-code steps.