Sync permissioned deals data with Zendesk Sell through Apideck's unified API. One integration, instant access to the governed data your team needs.
In Apideck, this resource is called Opportunities (API: opportunities)
Full CRUD support available through our unified API
Fields available for Zendesk Sell Deals
idtitleprimary_contact_idmonetary_amountcurrencywin_probabilityclose_dateloss_reason_idcontact_idcompany_idowner_idtagsupdated_atcreated_atSample response structure for deals
{
"id": "12345",
"title": "Example Title",
"primary_contact_id": "12345",
"monetary_amount": 100,
"currency": "USD",
"win_probability": "string",
"close_date": "2024-01-15",
"loss_reason_id": "12345",
"contact_id": "12345",
"company_id": "12345",
"owner_id": "12345",
"tags": [
{
"id": "12345",
"name": "Tag Name"
}
],
"updated_at": "2024-01-15T10:30:00.000Z",
"created_at": "2024-01-15T10:30:00.000Z"
}Start syncing Zendesk Sell 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 Zendesk Sell
const result = await apideck.crm.opportunities.list({
serviceId: 'zendesk-sell'
})
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 Zendesk Sell integrations in your favorite language with our official SDKs.
Build Zendesk Sell integrations with the official Node.js SDK.
Build Zendesk Sell integrations with the official TypeScript SDK.
Build Zendesk Sell integrations with the official PHP SDK.
Build Zendesk Sell integrations with the official .NET.
Build Zendesk Sell integrations with the official Python SDK.
Build Zendesk Sell integrations with the official Java SDK.
Build Zendesk Sell integrations with the official Go SDK.