A simple, all-in-one HR software focused on people.
Emit new event whenever a new employee is created. See the documentation
Emit new event when a new job application is submitted. See the documentation
Hires a new employee and registers them in the system. See the documentation
Responds to an employee's time off request. This action requires the request ID and the response status as props. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
talenthr: {
type: "app",
app: "talenthr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://pubapi.talenthr.io/v1/timezones`,
auth: {
username: `${this.talenthr.$auth.api_key}`,
password: `c`,
},
})
},
})
The Typeform API furnishes you with the means to create dynamic forms and collect user responses in real-time. By leveraging this API within Pipedream's serverless platform, you can automate workflows to process this data, integrate seamlessly with other services, and react to form submissions instantaneously. This empowers you to craft tailored responses, synchronize with databases, trigger email campaigns, or even manage event registrations without manual intervention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
typeform: {
type: "app",
app: "typeform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.typeform.com/me`,
headers: {
Authorization: `Bearer ${this.typeform.$auth.oauth_access_token}`,
},
})
},
})