Sync deals data with ActiveCampaign 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 ActiveCampaign Deals
idtitleprimary_contact_iddescriptionmonetary_amountcurrencywin_probabilitypipeline_idpipeline_stage_idcontact_idcompany_idowner_idstatus_idinteraction_countcustom_fields+2 moreSample response structure for deals
{
"id": "12345",
"title": "Example Title",
"primary_contact_id": "12345",
"description": "Example Description",
"monetary_amount": 100,
"currency": "USD",
"win_probability": "string",
"pipeline_id": "12345",
"pipeline_stage_id": "12345",
"contact_id": "12345",
"company_id": "12345",
"owner_id": "12345",
"status_id": "12345",
"interaction_count": 10,
"custom_fields": [
{
"id": "12345",
"name": "Custom Field",
"value": "Custom Value"
}
],
...Start syncing ActiveCampaign 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 ActiveCampaign
const result = await apideck.crm.opportunities.list({
serviceId: 'activecampaign'
})
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 ActiveCampaign integrations in your favorite language with our official SDKs.
Build ActiveCampaign integrations with the official Node.js SDK.
Build ActiveCampaign integrations with the official TypeScript SDK.
Build ActiveCampaign integrations with the official PHP SDK.
Build ActiveCampaign integrations with the official .NET.
Build ActiveCampaign integrations with the official Python SDK.
Build ActiveCampaign integrations with the official Java SDK.
Build ActiveCampaign integrations with the official Go SDK.