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.
Mass Update Advance Account Forecast Action
For more information about how the massUpdateAdvAccountForecast action calculates the advanced account forecasting, see Use Manufacturing Actions in Flow Builder and Process Builder in Salesforce Help. This action is available in API version 56.0 and later.
To use this resource, you must have the Manufacturing Cloud and Advance Account Forecasting feature are enabled in your Salesforce org. See Enable Advanced Account Forecasting.
Special Access Rules
Supported REST HTTP Methods
- URI
- /services/data/vXX.X/actions/standard/massUpdateAdvAccountForecast
- Formats
- JSON, XML
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| actionType |
|
| forecastReferenceId |
|
| isPercent |
|
| listViewId |
|
| measureFieldName |
|
| value |
|
Outputs
| Output | Details |
|---|---|
| errors |
|
| isSuccess |
|
Examples
Sample Request
1{"inputs" : [{
2 "actionType": "Increase By",
3 "forecastReferenceId": "0ogT10000000BekIAE",
4 "isPercent": false,
5 "listViewId": "00BT1000000WIUxMAO",
6 "measureFieldName": "custom_measure__c",
7 "value": "1"
8}]}Sample Response
1[ {
2 "actionName" : "massUpdateAdvAccountForecast",
3 "errors" : null,
4 "isSuccess" : true
5} ]