Newer Version Available
Mass Update Account Forecast Action
For more information about updating multiple values of a single metric of an account forecast, see Use Manufacturing Actions in Flow Builder and Process Builder in Salesforce Help.
This object is available in API version 48.0 and later for users with Manufacturing Cloud license.
Supported REST HTTP Methods
- URI
- /services/data/vXX.X/actions/standard/massUpdateAccountForecast
- Formats
- JSON, XML
- HTTP Methods
- GET, HEAD, POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| entityId |
|
| fieldToUpdate |
|
| periods |
|
| products |
|
| operation |
|
| numericvalue |
|
| numericValueType |
|
| adjNote |
|
Usage
Sample Request
The following example shows how to mass
update forecast
fields:
1{
2“entityId”: “a07B0000007qbQOIAY”,
3“fieldToUpdate”: “DiscountPercentage”,
4“periods”: “[”a07B0000007qbQOIAY“,”a07B0000007qbQOIAY“]”,
5“products”: “[”a07B0000007qbQOIAY“,”a07B0000007qbQOIAY“]”,
6“operation”: “ReplaceWith”,
7“numericvalue”: 10,
8“numericValueType”: “Percentage”,
9“adjNote”: “Percentage updated.”
10}