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.
Method and endpoint
https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/processes
Parameters
Parameter | Description |
AnaplanAuthToken:{token} | Your Anaplan authentication token value. |
workspaceID | The workspace ID. |
modelID | The model ID. |
Curl example
curl -X GET \ https://api.anaplan.com/2/0/workspaces/0a800b00e0000000f000001eab0d0000/models/F1111111C11111111B11111F1111E11F/processes \ -H 'authorization: AnaplanAuthToken{token}' \ -H "Content-Type:application/json"
Response
{
"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"
}
]
}