Skip to main content
The OpportunityUpdate event fires whenever any field on an existing opportunity is changed. This is a broad event that covers edits to the opportunity name, monetary value, pipeline stage, status, assignment, and more. Use this event to keep external systems in sync or to trigger follow-up actions whenever a deal progresses.

Payload

FieldTypeDescription
typestringAlways "OpportunityUpdate"
locationIdstringSub-account ID where the opportunity lives
idstringUnique identifier for the opportunity
assignedTostringUser ID of the team member currently assigned to this opportunity
contactIdstringID of the contact associated with this opportunity
monetaryValuenumberCurrent estimated deal value in the sub-account’s currency
namestringDisplay name of the opportunity
pipelineIdstringID of the pipeline this opportunity belongs to
pipelineStageIdstringID of the current pipeline stage
sourcestringOrigin of the opportunity (e.g., "form", "manual", "api")
statusstringCurrent status of the opportunity (open, won, lost, or abandoned)
dateAddedstringISO 8601 timestamp of when the opportunity was originally created

Example payload

{
  "type": "OpportunityUpdate",
  "locationId": "ve9EPM428h8vShlRW1KT",
  "id": "nmFmQEsNgz6AVpgLVUJ0",
  "assignedTo": "YlWd2wuCAZQzh2cH1fVZ",
  "contactId": "CWBf1PR9LvvBkcYqiXlc",
  "monetaryValue": 40,
  "name": "Loram ipsu",
  "pipelineId": "otg8dTQqGLh3Q6iQI55w",
  "pipelineStageId": "otg8dTQqGLh3Q6iQI55w",
  "source": "form",
  "status": "open",
  "dateAdded": "2021-11-26T12:41:02.193Z"
}
Last modified on March 4, 2026