Decision Matrix Columns

Retrieve a list of or manage columns in a decision matrix. Use this resource to add new columns, or update or delete existing columns in a decision matrix.
Resource
/connect/omnistudio/decision-matrices/${matrixId}/columns
Example
/services/data/v53.0/connect/omnistudio/decision-matrices/0lIR000000000u0MAA/columns
Available version
53.0
Requires Chatter
No
HTTP methods
GET, POST
Path parameters for GET
Parameter Name Type Description Required or Optional Available Version
matrixId String The ID of the decision matrix record. Required 53.0
Response body for GET
Decision Matrix Columns Output
Request body for POST
JSON example

Add a column:

{
   "columns" : [ {
      "apiName" : "Name",
      "columnType" : "Input",
      "dataType" : "Text",
      "displaySequence" : 4,
      "name" : "Name"
   }]
}

Delete a column:

{
   "columns" : [ {
      "action" : "delete",
      "id" : "0lJR0000000014bMAA"
   }]
}

Update a column:

{
   "columns" : [ {
      "id" : "0lJR0000000014hMAA",
      "action" : "update",
      "columnType" : "Input",
      "name" : "First Name"
   }]
}
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
Response body for POST
Decision Matrix Output