Talenox is a cloud-based HR software designed to manage payroll and leave, and store precious employee details from a central location.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
talenox: {
type: "app",
app: "talenox",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.talenox.com/api/v2/employees`,
headers: {
Authorization: `Bearer ${this.talenox.$auth.api_token}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
})
},
})
Talenox uses API keys for authentication. When you connect your Talenox account, Pipedream securely stores the keys so you can easily authenticate to Talenox APIs in both code and no-code steps.
To retrieve your API Token,