Use this call to retrieve a JSON array of all process definitions available in the model, including key details.

  • id is the Id of the process that you can run on the specified model.
  • name is the name of the process that you can run.
GET

/workspaces/{workspaceId}/models/{modelId}/processes

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}/processes \
-H 'authorization: AnaplanAuthToken {anaplan_auth_token}' \
-H 'Content-Type:application/json'

[
   {
      "id":"118000000001",
      "name":"Process1"
   },
   {
      "id":"118000000002",
      "name":"Process2"
   }
]