/Command/Action/:cube/:action
Executes the specified KPI action defined by the action class for the given cube.
Request Method
GET or POST
URL Parameters
cube
Required. Logical name of the cube. This name can include slashes; see Use of Slashes in Cube and KPI Names.
action
Required. Name of an action defined in the <actionClass> for the given cube.
Request Body Details
If applicable to the action, the request body can include the calling context (under the CONTEXT object), and will be returned as the Context object in the Result payload. In this case, you must use POST.
Example Request
-
Request Method:
GET
-
Request URL:
https://localhost/api/deepsee/v3/Command/Action/holefoods/ActionA
For comments on the possible forms of the URL, see Introduction to the Business Intelligence REST API.
-
Request Body:
{}
Example Response
{
"Info": {
"Error": "",
"CubeName": "holefoods",
"Action": "ActionA"
},
"Result": {
"Context": {
"command": "navigate:http://www.intersystems.com"
}
}
}