This call returns the list of the process definitions in the model, which allows you to pick a process ID for use in subsequent calls. 

GET

https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/processes

ParameterDescription
AnaplanAuthToken:{token}Your Anaplan authentication token value.
workspaceIDThe workspace ID.
modelIDThe model ID.

curl -X GET \ https://api.anaplan.com/2/0/workspaces/0a800b00e0000000f000001eab0d0000/models/F1111111C11111111B11111F1111E11F/processes \ -H 'authorization: AnaplanAuthToken{token}' \ -H "Content-Type:application/json"

{

   "meta":{

      "paging":{

         "currentPageSize":1,

         "offset":0,

         "totalSize":1

      },

      "schema":"https://api.anaplan.com/2/0/models/F1111111C11111111B11111F1111E11F/objects/process"

   },

   "status":{

      "code":200,

      "message":"Success"

   },

   "processes":[

      {

         "id":"118000000001",

         "name":"Sample Process"

      }

   ]

}