Convenia is a cloud people management software for small business that increase its efficiency and eliminating operational labor.
Go to siteThe Convenia API offers a suite of HR management functionalities, allowing for the automation of employee onboarding, payroll management, and other HR tasks. By integrating with Convenia via Pipedream, you can streamline HR operations, sync employee data across applications, and trigger actions based on various HR events. Pipedream's serverless platform facilitates the creation of complex workflows to interact with the Convenia API, enabling developers and HR professionals to build custom automations without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
convenia: {
type: "app",
app: "convenia",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://public-api.convenia.com.br/api/v3/employees`,
headers: {
"token": `${this.convenia.$auth.api_token}`,
},
})
},
})
Automated Employee Onboarding: Trigger a Pipedream workflow whenever a new employee is added in Convenia. The workflow can send a welcome email, create accounts in tools like Slack or Microsoft 365, and add the employee to relevant HR and project management platforms.
Payroll Change Notifications: Set up a workflow to listen for payroll updates from Convenia. Once a change is detected, the workflow can notify the finance team via email or a messaging app like Slack, ensuring they are always aware of updates in real-time.
Time-Off Management: Implement a workflow triggered by time-off requests in Convenia. It can automatically update shared calendars and inform team members in applications like Google Calendar or Outlook, facilitating better team planning and resource allocation.
Creates a new leave of absence for an employee. See the documentation
Convenia uses API keys for authentication. When you connect your Convenia account, Pipedream securely stores the keys so you can easily authenticate to Convenia APIs in both code and no-code steps.
To retrieve your API token,
* Navigate to your Convenia account and sign in
* Go to “Configurações” > “API”