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
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
-
1/connect/omnistudio/decision-matrices/${matrixId}/columns - Example
-
1/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:
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
- Response body for POST
- Decision Matrix Output