Sync deals data with Freshworks CRM through Apideck's unified API. One integration, instant access.
In Apideck, this resource is called Opportunities (API: opportunities)
Full CRUD support available through our unified API
Fields available for Freshworks CRM Deals
idtitlemonetary_amountwin_probabilityexpected_revenueclose_dateloss_reason_idpipeline_idpipeline_stage_idsource_idcompany_idowner_idtagscustom_fieldsdeleted+4 moreSample response structure for deals
{
"id": "12345",
"title": "Example Title",
"monetary_amount": 100,
"win_probability": "string",
"expected_revenue": "string",
"close_date": "2024-01-15",
"loss_reason_id": "12345",
"pipeline_id": "12345",
"pipeline_stage_id": "12345",
"source_id": "12345",
"company_id": "12345",
"owner_id": "12345",
"tags": [
{
"id": "12345",
"name": "Tag Name"
}
],
"custom_fields": [
{
"id": "12345",
"name": "Custom Field",
"value": "Custom
...Start syncing Freshworks CRM deals in minutes
import { Apideck } from '@apideck/unify'
const apideck = new Apideck({
apiKey: process.env.APIDECK_API_KEY,
appId: 'YOUR_APP_ID',
consumerId: 'YOUR_CONSUMER_ID'
})
// List deals from Freshworks CRM
const result = await apideck.crm.opportunities.list({
serviceId: 'freshsales'
})
for await (const page of result) {
console.log(page)
}
// Returns unified deals dataWe build and maintain connectors, so you don't have to. View our full list of CRM connectors.
Missing a connector? We're able to add new connectors.
Build Freshworks CRM integrations in your favorite language with our official SDKs.
Build Freshworks CRM integrations with the official Node.js SDK.
Build Freshworks CRM integrations with the official TypeScript SDK.
Build Freshworks CRM integrations with the official PHP SDK.
Build Freshworks CRM integrations with the official .NET.
Build Freshworks CRM integrations with the official Python SDK.
Build Freshworks CRM integrations with the official Java SDK.
Build Freshworks CRM integrations with the official Go SDK.