Decision Matrix Rows Input

Input representation of the information to manage rows in relation to the decision matrix version.
JSON Example

Add a row:

{
   "rows" : [ {
    "rowData" : {
      "Age" : "45",
      "Gender" : "F",
      "Premium" : "2000"
    } 
   } ]
}

Delete a row:

{
   "rows" : [ {
    "rowData" : {
      "id" : "a1j5w000006D04uAAC",
      "action" : "delete"
    } 
   } ]
}

Update a row:

{
   "rows" : [ {
    "rowData" : {
      "id" : "a1j5w000005D04uAAC",
      "Premium" : "1500",
      "action" : "update"
    } 
   } ]
}

Add row using a CSV file:

{
   "fileId" : "f1j5w000005D04uFGC"
}
Properties
Name Type Description Required or Optional Available Version
fileId String The ID of the Content Document Version that contains the rows details to be added or updated in a decision matrix version. Optional

This field is required if you’re using a CVS file to add or update rows.

Note

53.0
rows Decision Matrix Row Input[] List of rows to be added, updated, or deleted in a decision matrix version. Required 53.0