Use this call to retrieve a JSON array of all process definitions available in the model, including key details.
idis the Id of the process that you can run on the specified model.nameis the name of the process that you can run.
Method and endpoint
GET
/workspaces/{workspaceId}/models/{modelId}/processes
Parameters
| Parameter | Description |
workspaceId |
|
modelId |
|
Curl example
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'
Response
Response 200 (application/json)
[
{
"id":"118000000001",
"name":"Process1"
},
{
"id":"118000000002",
"name":"Process2"
}
]