Newer Version Available

This content describes an older version of this product. View Latest

CSV Based Decision Table (GET)

Fetch paginated data from a CSV based decision table. This resource is responsible for managing rows in a Decision Table.
Resource
1/connect/business-rules/decision-table/${decisionTableId}/data
Example for GET
1https://yourInstance.salesforce.com/services/data/v62.0/connect/business-rules/decision-table/0lDxx0000000001EAA/data?filter=AssetLevel:101
Example for POST
1https://yourInstance.salesforce.com/services/data/v62.0/connect/business-rules/decision-table/0lDxx0000000001EAA/data
Available version
62.0
HTTP methods
GET POST
Request parameters for GET
Parameter Name Type Description Required or Optional Available Version
filter String Filters applied to rows based on column criteria. Optional 62.0
limit Integer Limits the number of records viewed at a time. The default value is 20. Optional 62.0
offset Integer Token that represents the page offset for pagination. Use this value with the pageSize parameter to indicate where the page starts. The maximum offset is 100 and the default is 0. Optional 62.0
Response body for GET
Decision Table Rows List
Request body for POST
JSON example
1{
2  "rows": [
3    {
4      "id": "1FIxx0000004CSOGA2",
5      "rowData": {
6        "City": "City3",
7        "AssetLevel": "300"
8      },
9      "action": "update"
10    }
11  ]
12}
Properties
Name Type Description Required or Optional Available Version
rows Decision Table Row Input[] List of rows to be updated or added. Required 62.0
Request parameters for POST
Parameter Name Type Description Required or Optional Available Version
rows​Input Object 62.0
Response body for POST
Decision Table Data