Returns a JSON list of all the actions in the model. It includes basic identifiers and attributes.
idis the Id of the action that you can carry out in the specified model.nameis the name of the action that you can carry out. You can view these actions in the Anaplan user interface in the Action settings for the model.
Method and endpoint
GET
/workspaces/{workspaceId}/models/{modelId}/actions
Parameters
| Parameter | Description |
workspaceId |
|
modelId |
|
Curl example
curl -X GET \
https://api.anaplan.com/2/0/workspaces/{workspaceId}/models/{modelId}/actions \
-H 'authorization: AnaplanAuthToken {anaplan_auth_token}' \
-H 'Content-Type:application/json'
Response
Response 200 (application/json)
{
"actions":[
{
"id":"117000000019",
"name":"Delete From Org 2"
},
{
"id":"117000000018",
"name":"Open Other Buttons"
},
{
"id":"117000000017",
"name":"Delete Branch"
}
]
}