Europe’s most valuable HR tech company offering an all-in-one HR software for SMEs.
The Personio API provides programmatic access to HR management functions, allowing you to manage employee data, time tracking, payroll, and recruitment processes. With Pipedream, you can leverage this API to create automations and workflows that can streamline HR operations, react to events in Personio in real-time, and connect HR data to other systems seamlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
personio: {
type: "app",
app: "personio",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.personio.de/v1/company/attendances/projects`,
headers: {
Authorization: `Bearer ${this.personio.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
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}`,
},
})
},
})