Convenia

Convenia is a cloud people management software for small business that increase its efficiency and eliminating operational labor.

Integrate the Convenia API with the ManyChat API

Setup the Convenia API trigger to run a workflow which integrates with the ManyChat API. Pipedream's integration platform allows you to integrate Convenia and ManyChat remarkably fast. Free for developers.

Send Dynamic Message to User with ManyChat API on New Dismissal from Convenia API
Convenia + ManyChat
 
Try it
Add Tag to User with ManyChat API on New Dismissal from Convenia API
Convenia + ManyChat
 
Try it
Add Tag to User with ManyChat API on New Vacation Request from Convenia API
Convenia + ManyChat
 
Try it
Create Leave Of Absence For Employee with Convenia API on New Or Updated Custom Field from ManyChat API
ManyChat + Convenia
 
Try it
Find User by Custom Field with ManyChat API on New Dismissal from Convenia API
Convenia + ManyChat
 
Try it
New Dismissal from the Convenia API

Emit new event when an employee is dismissed.

 
Try it
New Vacation Request from the Convenia API

Emit new event when there is a new vacation request at the company.

 
Try it
New Or Updated Custom Field from the ManyChat API

Emit new event when a selected custom field on a user profile is added or updated. See the documentation

 
Try it
Create Leave Of Absence For Employee with the Convenia API

Creates a new leave of absence for an employee. See the documentation

 
Try it
Add Tag to User with the ManyChat API

Adds a specific tag to a user specified by their user ID. This action is essential to categorize and filter users based on business-specific parameters. See the documentation

 
Try it
Find User by Custom Field with the ManyChat API

Locates a user based on a particular custom field's value. See the documentation

 
Try it
Send Dynamic Message to User with the ManyChat API

Delivers a dynamic message to a particular user specified by their user ID. See the documentation

 
Try it

Overview of Convenia

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.

Connect Convenia

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

Overview of ManyChat

The ManyChat API lets you manage and automate conversations in your chatbot, giving you control over user data, tags, and messaging. Integrating ManyChat with Pipedream can supercharge your chatbot workflows, enabling you to connect your ManyChat bot to various apps and services, automate interactions based on triggers, and analyze chatbot data to improve user engagement.

Connect ManyChat

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    manychat: {
      type: "app",
      app: "manychat",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.manychat.com/fb/page/getInfo`,
      headers: {
        Authorization: `Bearer ${this.manychat.$auth.api_key}`,
        "accept": `application/json`,
      },
    })
  },
})