この文章は Salesforce 機械翻訳システムを使用して翻訳されました。詳細はこちらをご参照ください。
英語に切り替える

Decision Table Invocation (POST)

1 つの要求内で複数の入力条件を渡して決定表を呼び出します。
リソース
1/connect/business-rules/decision-table/lookup/${decisionTableId}
リソースの例
1https://yourInstance.salesforce.com/services/data/v60.0/connect
2/business-rules/decision-table/lookup/${0lDD2000000004NMAQ}
使用可能なバージョン
58.0
Chatter が必要かどうか
いいえ
HTTP のメソッド
POST
POST のリクエストボディ
JSON の例
1{
2   "datasetLinkName" : "transactionMapping",
3   “conditions” :[
4      {
5        “conditionsList”: [
6          {
7              "fieldName": "Product__c",
8              "value": "Nike",
9              "operator": "Matches" //Operator is optional
10          },
11          {
12              "fieldName": "Price__c",
13              "value": 1000,
14              "operator": "GreaterThan"
15          }
16        ]
17      },
18      {
19        “conditionsList”: [
20          {
21              "fieldName": "Product__c",
22              "value": "Adidas",
23              "operator": "Matches" //Operator is optional
24          },
25          {
26              "fieldName": "Price__c",
27              "value": 1500,
28              "operator": "GreaterThan"
29          }
30        ]
プロパティ
名前 説明 必須か省略可能 使用可能なバージョン
conditions Decision Table Condition List 決定表が実行され、結果が提供される決定表条件のリスト。 必須 58.0
datasetLinkName String 決定表の実行の入力として提供されるデータセットリンクの API 参照名。 省略可能 58.0
POST のレスポンスボディ
Decision Table Bulk Outcome