Returns a JSON list of all the actions in the model. It includes basic identifiers and attributes.

  • id is the Id of the action that you can carry out in the specified model.
  • name is 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.
GET

/workspaces/{workspaceId}/models/{modelId}/actions

ParameterDescription
workspaceId
  • Required
  • Type: string
  • Description: The workspace ID
  • Example: 8a8b8c8d8e8f8g8i
modelId
  • Required
  • Type: string
  • Description: The model ID
  • Example: 75A40874E6B64FA3AE0743278996850F

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'

{
   "actions":[
      {
         "id":"117000000019",
         "name":"Delete From Org 2"
      },
      {
         "id":"117000000018",
         "name":"Open Other Buttons"
      },
      {
         "id":"117000000017",
         "name":"Delete Branch"
      }
   ]
}