Talenox

Talenox is a cloud-based HR software designed to manage payroll and leave, and store precious employee details from a central location.

Go to site
Explore
/
Apps
/
Talenox

Talenox API Integrations

Build and run workflows using the Talenox API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { 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`,
      },
    })
  },
})

Authentication

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,

  • Navigate to your Talenox account and sign in
  • Go to “API Settings” > “Talenox Token”