The Opportunity object

This object represents a potential deal with a customer. It helps track chances to sell products or services to possible clients.

{
  "id": "OVYSz248mWyRtpjp1Ll8",
  "name": "Scheduling a dental cleaning promotion",
  "customerId": "e0hO4E0wHfbyPxjPAPAb",
  "ownerId": "0A2Ed5T7VvUffByieEQ6nhBspJC2",
  "score": 10,
  "amount": 1500,
  "stageId": "K1mb7xsIsx0qnfyxFAvo",
  "pipelineId": "g3g7oZwXq7Gc9e5rwO3Y",
  "createdAt": "2024-08-14T14:38:03Z",
  "updatedAt": "2024-08-14T14:38:03Z",
  "removed": false
}

Attributes

  • id (string): A unique identifier for the sales opportunity.

  • name (string): The name of the sales opportunity.

  • customerId (string): The identifier of the customer associated with the sales opportunity.

  • ownerId (string, nullable): The identifier of the owner of the sales opportunity. This field can be null if no owner is assigned.

  • score (number, nullable): A numeric score representing the potential of the sales opportunity. This field can be null if not evaluated.

  • amount (number, nullable): The monetary value of the sales opportunity in cents. This field can be null if the amount is not specified.

  • stageId (string): The identifier of the current stage of the sales opportunity in the sales pipeline.

  • pipelineId (string): The identifier of the pipeline that the sales opportunity belongs to.

  • createdAt (string, format: date-time): The date and time when the sales opportunity was created, in the date-time notation as defined by RFC 3339 (e.g., 2017-07-21T17:32:28Z).

  • updatedAt (string, format: date-time): The date and time when the sales opportunity was last updated, in the date-time notation as defined by RFC 3339 (e.g., 2017-07-21T17:32:28Z).

  • removed (boolean): A flag indicating whether the sales opportunity has been removed from the system.

Last updated