Sync permissioned history data with Act through Apideck's unified API. One integration, instant access to the governed data your team needs.
In Apideck, this resource is called Activities (API: activities)
Full CRUD support available through our unified API
Fields available for Act History
iddownstream_idactivity_datetimeuser_idcontact_idcompany_idopportunity_idowner_idtypetitledescriptionprivateevent_sub_typestart_datetimeend_datetime+8 moreSample response structure for history
{
"id": "12345",
"downstream_id": "12345",
"activity_datetime": "2024-01-15",
"user_id": "12345",
"contact_id": "12345",
"company_id": "12345",
"opportunity_id": "12345",
"owner_id": "12345",
"type": "standard",
"title": "Example Title",
"description": "Example Description",
"private": "string",
"event_sub_type": "standard",
"start_datetime": "2024-01-15",
"end_datetime": "2024-01-15",
"duration_minutes": "string",
"activity_date": "2024-01-15",
"end_date": "2
...Start syncing Act history 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 history from Act
const result = await apideck.crm.activities.list({
serviceId: 'act'
})
for await (const page of result) {
console.log(page)
}
// Returns unified history 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 Act integrations in your favorite language with our official SDKs.
Build Act integrations with the official Node.js SDK.
Build Act integrations with the official TypeScript SDK.
Build Act integrations with the official PHP SDK.
Build Act integrations with the official .NET.
Build Act integrations with the official Python SDK.
Build Act integrations with the official Java SDK.
Build Act integrations with the official Go SDK.