A Deal represents a sales opportunity or transaction in a CRM system. It contains information about the potential revenue, stage in the sales pipeline, and relationships to accounts and contacts. Deal objects are delivered within Sync Events under the unified field.
You can download the JSON schema files here:
{
"type" : "Deal" ,
"event" : {
"id" : "006234567890ABC" ,
"name" : "Enterprise Platform License" ,
"accountId" : "001234567890ABC" ,
"contactId" : "003234567890ABC" ,
"amount" : 250000.00 ,
"stage" : "Negotiation" ,
"probability" : 75.0 ,
"closeDate" : "2025-03-31T23:59:59Z" ,
"ownerId" : "005234567890XYZ" ,
"dealType" : "New Business" ,
"leadSource" : "Referral" ,
"description" : "Annual enterprise license for 500 users" ,
"isClosed" : false ,
"isWon" : false ,
"createdAt" : "2024-11-15T09:00:00Z" ,
"updatedAt" : "2024-12-20T14:20:15Z"
},
"category" : "CRM"
}
Properties
The type of the event. Always set to “Deal”.
The main deal data containing all deal information. Show Deal Event Properties
Unique identifier for the deal.
The name or title of the deal.
The ID of the account associated with this deal (optional).
The ID of the primary contact associated with this deal (optional).
The monetary value of the deal (optional).
The current stage of the deal in the sales pipeline.
The probability of closing the deal, typically expressed as a percentage (optional).
The expected or actual close date of the deal in ISO 8601 format (optional).
The ID of the user who owns this deal (optional).
The type or classification of the deal (optional).
The source or origin of the deal (optional).
A description of the deal (optional).
Whether the deal has been closed (won or lost).
Whether the deal was won. Only meaningful if isClosed is true.
The timestamp when the deal was created in ISO 8601 format.
The timestamp when the deal was last updated in ISO 8601 format.
Category or classification of the deal event.