Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
FormulaOperator
Represents an operator used when building a formula,
including examples and uses. This object is available in Tooling API version 39.0
and later.
Supported SOAP Calls
query()
Supported REST HTTP Methods
GET
Fields
| Field | Details |
|---|---|
| DurableId |
|
| Label |
|
| Name |
|
| Value |
|
Query Examples
To get all formula operators available in
FormulaOperator:
1req.setEndpoint('http://instance.salesforce.com/services/data/v68.0/tooling/query?q=SELECT+name,+label,+value+FROM+FormulaOperator );
2req.setMethod('GET');To get formula operators by
ID:
1req.setEndpoint('http://instance.salesforce.com/services/data/v68.0/tooling/query?q=SELECT+name,+label,+value+FROM+FormulaOperator+WHERE+durableId='PLUS' );
2req.setMethod('GET');