Get parameter defintions for an action
get/cas/actions/{actionName}
Get parameter definitions for the specified action. If an action set is not specified as part of the name, a list of actions from all action sets with the matching name is returned.
1{2 "title": "Action Definition",3 "description": "Action Definition",4 "type": "object",5 "properties": {6 "actionSet": {7 "description": "Action set that contains the action.\n",8 "type": "string"9 },10 "description": {11 "description": "Description of the action.\n",12 "type": "object",13 "properties": {14 "text": {15 "type": "string"16 }17 }18 },19 "label": {20 "description": "Label for the action for user interfaces.\n",21 "type": "object",22 "properties": {23 "text": {24 "type": "string"25 }26 }27 },28 "name": {29 "description": "Name of the action.\n",30 "type": "string"31 },32 "parameters": {33 "description": "Array of parameters for the action.\n",34 "type": "array",35 "items": {36 "$ref": "#/components/schemas/ActionParameter"37 }38 },39 "results": {40 "description": "List of results returned by the action. Not all actions provide this\ninformation. If not provided, refer to the action documentation, which can be found\nat:\n<ul>\n<li style=\"list-style-type:none;\"><a target=\"_blank\" href=\"http://documentation.sas.com/#/?cdcId=vdmmlcdc&cdcVersion=8.1&docsetId=caspg&docsetTarget=titlepage.htm\">System Programming Guide</a></li>\n<li style=\"list-style-type:none;\"><a target=\"_blank\" href=\"http://documentation.sas.com/#/?cdcId=vdmmlcdc&cdcVersion=8.1&docsetId=casanpg&docsetTarget=titlepage.htm\">Analytics Programming Guide</a></li>\n<li style=\"list-style-type:none;\"><a target=\"_blank\" href=\"http://documentation.sas.com/#/?cdcId=vdmmlcdc&cdcVersion=8.1&docsetId=casactstat&docsetTarget=titlepage.htm\">Statistics Programming Guide</a></li>\n<li style=\"list-style-type:none;\"><a target=\"_blank\" href=\"http://documentation.sas.com/#/?cdcId=vdmmlcdc&cdcVersion=8.1&docsetId=casactml&docsetTarget=titlepage.htm\">Data Mining and Machine Learning Programming Guide</a></li>\n</ul>\n",41 "type": "array",42 "items": {43 "$ref": "#/components/schemas/ActionResultValue"44 }45 },46 "entry": {47 "description": "Entry point for the action. Used internally.",48 "type": "string"49 },50 "id": {51 "description": "Unique identifier for this definition. Not a UUID.",52 "type": "string"53 },54 "jsonObjectType": {55 "description": "The type of this object. Value is always \"action\" for this schema.",56 "type": "string"57 }58 }59}