Personalize engagement, shorten your sales cycle, and grow your business with Freshsales
Go to siteWith the Freshsales API, you can build a variety of applications and integrations to extend the functionality of your Freshsales account. Here are some examples of what you can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
freshsales: {
type: "app",
app: "freshsales",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.freshsales.$auth.domain}.freshsales.io/api/leads/`,
headers: {
"Content-Type": `application/json`,
"Authorization": `Token token=${this.freshsales.$auth.api_key}`,
},
})
},
})
Freshsales uses API keys for authentication. When you connect your Freshsales account, Pipedream securely stores the keys so you can easily authenticate to Freshsales APIs in both code and no-code steps.
To retrieve your API Key,
Your domain is 1234
if your Freshsales URL is https://1234.myfreshworks.com/crm/sales/my_dashboards