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.

Decision Matrix Columns Input

Input representation of the information to manage columns in relation to a decision matrix.
JSON example

Add a column:

1{
2   "columns" : [ {
3      "apiName" : "Name",
4      "columnType" : "Input",
5      "dataType" : "Text",
6      "displaySequence" : 4,
7      "name" : "Name"
8   }]
9}

Delete a column:

1{
2   "columns" : [ {
3      "action" : "delete",
4      "id" : "0lJR0000000014bMAA"
5   }]
6}

Update a column:

1{
2   "columns" : [ {
3      "id" : "0lJR0000000014hMAA",
4      "action" : "update",
5      "columnType" : "Input",
6      "name" : "First Name"
7   }]
8}
Properties
Name Type Description Required or Optional Available Version
columns Decision Matrix Column Input[] List of columns to be added, updated, or deleted in a decision matrix. Required 53.0