Vtiger CRM

Vtiger all-in-one CRM empowers you to align your marketing, sales and support teams with unified customer data powered by One View

Go to site
Explore
/
Apps
/
Vtiger CRM

Vtiger CRM API Integrations

Build and run workflows using the Vtiger CRM API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

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: {
    vtiger_crm: {
      type: "app",
      app: "vtiger_crm",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.vtiger_crm.$auth.instance}.vtiger.com/restapi/v1/vtiger/default/me`,
      auth: {
        username: `${this.vtiger_crm.$auth.username}`,
        password: `${this.vtiger_crm.$auth.access_key}`,
      },
    })
  },
})

Authentication

Vtiger CRM uses API keys for authentication. When you connect your Vtiger CRM account, Pipedream securely stores the keys so you can easily authenticate to Vtiger CRM APIs in both code and no-code steps.

To retrieve your Access Key,

  • Navigate to your Vtiger CRM account and sign in
  • Click the dropdown on the to right
  • Go to “My Preferences”

  • Your instance is 1234.abc if your Vtiger CRM dashboard URL is https://1234.abc.vtiger.com/
  • Enter the email address you use to log into VTiger CRM as the username