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 siteimport { 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}`,
},
})
},
})
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,
1234.abc
if your Vtiger CRM dashboard URL is https://1234.abc.vtiger.com/
username