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.
Update Advanced Account Forecast Set Partner Action
Updates the status of the Advanced Account Forecast Set Partner record
after the forecast data for a given combination of account and forecast set has been
generated.
For more information about how the updateAdvancedAccountForecastSetPartner action updates the status, see Calculate Account Forecasts Using Flows in Salesforce Help.
This object is available in API version 53.0 and later.
Supported REST HTTP Methods
- URI
- /services/data/vXX.X/actions/standard/updateAdvancedAccountForecastSetPartner
- Formats
- JSON
- HTTP Methods
- POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| accountId |
|
| forecastSetId |
|
| status |
|
Usage
JSON Sample Requests
This example sets the status for the Account Forecast Set Partner record with given forecast
set ID and account ID to Active.
1{
2 "inputs":[{
3 "forecastSetId" : "0ni5sajb8347k3s",
4 "accountId" : "001jsdhsdjo457",
5 "status" : "Active"
6 }]
7}This example sets the status for all the Forecast Set Partner records with the given forecast
set ID to Active.
1{
2 "inputs":[{
3 "forecastSetId" : "0ni5sajb8347k3s"
4 }]
5}This example sets the status for all the Forecast Set Partner records with the given forecast
set ID to Inactive.
1{
2 "inputs":[{
3 "forecastSetId" : "0ni5sajb8347k3s",
4 "status" : "Inactive"
5 }]
6}JSON Sample Response
1[ {
2 "actionName" : "updateAdvancedAccountForecastSetPartner",
3 "errors" : null,
4 "isSuccess" : true,
5 "outputValues" : null
6} ]