List all deals

GET/crm/{connection_id}/deal

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
company_idstring
The company ID to filter by (reference to CrmCompany)
contact_idstring
The contact ID to filter by (reference to CrmContact)
user_idstring
The user/employee ID to filter by (reference to HrisEmployee)
pipeline_idstring
The pipeline ID to filter by
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

CrmDealarray

A deal represents an opportunity with companies and/or contacts

idstring
Unique identifier for this deal object
created_atdate
The date that this deal object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
updated_atdate
The last date that this deal object was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
namestring
The name of this deal
amountnumber
The potential amount that deal could be worth
currencystring
The currency for the deal amount (3 letter ISO code; eg. USD)
closed_atdate
The date that this deal closed (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
closing_atdate
expected closing date (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)
stagestring
@deprecated Use stages array instead
stage_idstring
@deprecated Use stages array instead
pipelinestring
@deprecated Use pipelines array instead
pipeline_idstring
@deprecated Use pipelines array instead
stages array
pipelines array
sourcestring
The source for this deal
probabilitynumber
tagsstring array
lost_reasonstring
won_reasonstring
user_idstring
(reference to HrisEmployee)
contact_idsstring array
(reference to CrmContact)
company_idsstring array
(reference to CrmCompany)
metadata array
const options = {
  method: 'GET',
  url: 'https://api.unified.to/crm/5de520f96e439b002043d8dc/deal',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    limit: 50,
    offset: 0,
    updated_gte: '2026-05-22T23:26:07.717Z',
    sort: 'updated_at',
    order: 'asc',
    query: '',
    company_id: '',
    contact_id: '',
    user_id: '',
    pipeline_id: '',
    fields: '',
    raw: '',
  }
};

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