Skip to main content
This is the full list of fields returned by the Get Deals and Bulk Export Deals endpoints. Use the columns parameter to request a subset; * (the default) returns every scalar field plus the relational arrays (drivers, competitors, features). Types are given as JSON types. Timestamps are ISO 8601 strings (e.g. 2026-01-10T12:00:00Z). A field is null when it hasn’t been set or generated yet.
Several internal columns are never returned, even with * or when named explicitly: full-text search vectors, sync bookkeeping, sharing config, and raw aggregate blobs — fts, joined_fts, keywords, mention_ids, sync_run_id, client_id, proposal, next_steps*, requirements*, summary_context/summary_all, engagements_*, slack_channel_id, org_sharing_*, reports_event_run_id, processing_in_progress, last_processing_started, questions_due.

Core deal

FieldTypeDescription
idstringDeal identifier (e.g. deal_123).
namestringDeal name.
org_idstringOwning organization ID.
owner_idstringDeal owner (user ID).
typestringDeal type (e.g. New Business, Expansion).
regionstringRegion (e.g. North America).
industrystringIndustry of the account.
amountnumberDeal value.
statusstringDeal stage (display value).
status_idstringDeal stage ID.
previous_status_idstringPrior stage ID.
close_datestringExpected/actual close date (aliased from the internal proposal_due; requestable as either name).
last_status_updatedstringWhen the stage last changed.
created_atstringCreation timestamp.
updated_atstringLast update timestamp.
last_syncedstringLast CRM sync timestamp.
archivedbooleanWhether the deal is archived.
deal_analyzedbooleanWhether win-loss analysis has run.
summarystringThe deal’s executive summary, null until analyzed.
website_urlstringAccount website.
collaboratorsstring[]Collaborator user IDs.
contact_idsstring[]Associated contact IDs.
metadataobjectFree-form metadata (e.g. { "source": "..." }).

CRM

FieldTypeDescription
hubspot_idstringHubSpot deal ID.
hubspot_urlstringHubSpot deal URL.
salesforce_idstringSalesforce opportunity ID.
salesforce_urlstringSalesforce opportunity URL.
hubspot_custom_propertiesobjectCustom HubSpot deal properties.
hubspot_custom_properties_accountobjectCustom HubSpot account properties.
salesforce_custom_propertiesobjectCustom Salesforce opportunity properties.
salesforce_custom_properties_accountobjectCustom Salesforce account properties.

Account / company

FieldTypeDescription
client_namestringAccount/company name.
logo_urlstringCompany logo URL.
short_descriptionstringShort company description.
linkedin_urlstringCompany LinkedIn URL.
twitter_urlstringCompany Twitter/X URL.
phonestringCompany phone.
citystringCompany city.
statestringCompany state/region.
countrystringCompany country.
founded_yearnumberYear founded.
num_employeesnumberEmployee count.
annual_revenuenumberAnnual revenue.
total_fundingnumberTotal funding raised.

Competitors

Scalar references plus the flattened competitors array.
FieldTypeDescription
competitor_idsstring[]All competitor IDs on the deal.
primary_competitor_idstringPrimary competitor ID.
incumbent_competitor_idstringIncumbent competitor ID.
selected_competitor_idstringCompetitor that won (if lost to a competitor).
competitorsobject[]Flattened competitor detail — see below.
competitors[] (highest threat first):
FieldTypeDescription
competitor_idstringCompetitor ID.
namestringCompetitor name.
is_primarybooleanPrimary competitor on the deal.
is_incumbentbooleanIncumbent vendor.
threat_levelnumberCompetitive threat level (1–5).
outcomestringCompetitive outcome.
positioning_summarystringHow we positioned against them.
key_differentiatorsstringKey differentiators cited.

Drivers

Decision drivers behind the outcome. Flat arrays plus the flattened drivers array.
FieldTypeDescription
driver_idsstring[]Driver (reason) IDs.
driver_namesstring[]Driver names, parallel to driver_ids.
driversobject[]Flattened driver detail — see below.
drivers[] (strongest first):
FieldTypeDescription
namestringDriver / reason name.
tagstringCategory tag (e.g. Product, Pricing, Relationship).
scorenumberInfluence score.
sentimentstringpositive, negative, or neutral.
summarystringHow this driver impacted the deal.

Features

FieldTypeDescription
feature_idsstring[]Associated feature IDs.
featuresobject[]Flattened feature detail — see below.
features[] (highest impact first):
FieldTypeDescription
namestringFeature name.
productstringProduct the feature belongs to.
impact_scorenumberImpact on the deal (1–5).
sentimentstringSentiment toward the feature.
influence_summarystringHow the feature influenced the deal.

Metrics (win-loss scorecard)

Eight default metrics, each a score (1–5) plus a text explanation.
Score fieldExplanation field
wl_product_fit_scorewl_product_fit_explanation
wl_sales_execution_scorewl_sales_execution_explanation
wl_relationship_scorewl_relationship_explanation
wl_price_sensitivity_scorewl_price_sensitivity_explanation
wl_competitive_intensity_scorewl_competitive_intensity_explanation
wl_customer_fit_scorewl_customer_fit_explanation
wl_messaging_fit_scorewl_messaging_fit_explanation
wl_messaging_accuracy_scorewl_messaging_accuracy_explanation
Plus org-defined custom metrics: custom_metricsobject[]:
{
  "id": "uuid",
  "name": "Customer AI Readiness",
  "score": 2,
  "explanation": "…",
  "created_at": "2026-01-10T12:00:00Z"
}
You can also request an individual metric as a top-level column by name: custom_metric_score_{name} and custom_metric_explanation_{name} (matched case-insensitively, spaces ignored).

Answers (custom insights)

custom_answersobject[]:
{
  "id": "uuid",
  "name": "Persona",
  "type": "insight",
  "answer": "Market Intel / Competitive Intel",
  "length": "select | boolean | sentence | paragraph",
  "prompt": "Pick the best persona fit",
  "confidence": 70,
  "group_id": "uuid",
  "group_name": "Persona",
  "generated_at": "2026-01-10T12:00:00Z",
  "evidence_used": ["…", "…"]
}
group_id / group_name appear only on grouped answers.
Request a single answer as a top-level column with custom_answer_{name} (matched case-insensitively, spaces ignored).