List all events

GET/crm/{connection_id}/event

Parameters

limitnumber default=100
offsetnumber default=0
updated_gtedate
Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
sort enum
order enum
querystring
Query string to search. eg. email address or name
deal_idstring
The deal ID to filter by (reference to CrmDeal)
contact_idstring
The contact ID to filter by (reference to CrmContact)
company_idstring
The company ID to filter by (reference to CrmCompany)
user_idstring
The user/employee ID to filter by (reference to HrisEmployee)
type enum
lead_idstring
The CRM lead ID to filter by (reference to CrmLead)
fieldsstring array
Fields to return
rawstring
Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters: foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar
connection_idstring required
ID of the connection

Returns

An event represents an event, activity, or engagement and is always associated with a deal, contact, or company

idstring
Unique identifier for this event object
created_atdate
The date that this event object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
The last date that this event object was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
type enum
Valid values:
"NOTE"
"EMAIL"
"TASK"
"MEETING"
"CALL"
The type of event
noteobject
The note object, when type = note
meetingobject
The meeting object, when type = meeting
emailobject
The email object, when type = email
callobject
The call object, when type = call
taskobject
The task object, when type = task
marketing_emailobject
formobject
page_viewobject
deal_idsstring array
An array of deal IDs associated with this event
company_idsstring array
An array of company IDs associated with this event
contact_idsstring array
An array of contact IDs associated with this event
lead_idsstring array
(reference to CrmLead)
user_idstring
(reference to HrisEmployee)
const options = {
  method: 'GET',
  url: 'https://api.unified.to/crm/5de520f96e439b002043d8dc/event',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-05-20T23:10:44.916Z',
    sort: 'updated_at',
    order: 'asc',
    query: '',
    deal_id: '',
    contact_id: '',
    company_id: '',
    user_id: '',
    type: '',
    lead_id: '',
    fields: '',
    raw: '',
  }
};

const results = await axios.request(options);
Are we missing anything? Let us know
Was this page helpful?