Skip to content

OppStatus

The status of an opportunity, such as whether it is accepting applications.

PropertyTypeRequiredDescription
valueOppStatusOptionsYesThe status value
customValuestringNoThe display value for a custom status
descriptionstringNoA human-readable description of the status

A JSON example of this field is:

// A standard status
{
"value": "open",
"description": "Opportunity is actively accepting applications"
}
// A custom status
{
"value": "custom",
"customValue": "review",
"description": "Opportunity is in review by the program team"
}

The set of values accepted for opportunity status.

ValueDescription
forecastedOpportunity is anticipated, but not yet accepting applications
openOpportunity is actively accepting applications
closedOpportunity is no longer accepting applications
customCustom opportunity status defined within the record

A JSON example of this field is:

"open"