Newer Version Available
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/v65.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/v65.0/tooling/query?q=SELECT+name,+label,+value+FROM+FormulaOperator+WHERE+durableId='PLUS' );
2req.setMethod('GET');