Newer Version Available
Decision Table Refresh Action
For more information about refreshing an active decision table, see Refresh Decision Tables in Flows in Salesforce Help. This object is available in API version 51.0 and later.
Supported REST HTTP Methods
- URI
- /services/data/vXX.X/actions/standard/refreshDecisionTable
- Formats
- JSON
- HTTP Methods
- GET, POST
- Authentication
- Authorization: Bearer token
Inputs
| Input | Details |
|---|---|
| decisionTableApiName |
|
| isIncremental |
|
Outputs
| Output | Details |
|---|---|
| errorMessage |
|
| status |
|
Usage
Sample Request
1{
2 "inputs": [
3 {
4 "decisionTableApiName": "Points_to_Redeem_Based_on_Product_and_Order_Channel",
5 "isIncremental": true
6 }
7 ]
8}Sample Response
1{
2 "status":"Queued",//Queued or Failed
3 "errorMessage":"" //in case any failure
4}