Convenia is a cloud people management software for small business that increase its efficiency and eliminating operational labor.
Creates a new leave of absence for an employee. See the documentation
Converts a Lead into a Contact or an Account. See the documentation
Downloads an attachment file from Zoho CRM, saves it in the temporary file system and exports the file path for use in a future step.
The 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}`,
},
})
},
})
The Zoho CRM API enables the manipulation and retrieval of data within Zoho CRM, a platform for managing your sales, marketing, support, and inventory in a single system. Leveraging this on Pipedream, you can automate tasks like syncing contacts, updating lead statuses, or creating custom CRM operations that trigger actions in other apps. Pipedream's serverless platform allows for real-time data processing, transforming, and orchestrating workflows that respond to events in Zoho CRM with minimal latency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_crm: {
type: "app",
app: "zoho_crm",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.zoho_crm.$auth.api_domain}/crm/v2/users?type=CurrentUser`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_crm.$auth.oauth_access_token}`,
},
})
},
})