A Process is a single container that enables several actions to run in a particular order.
Processes:
- can be configured on the Anaplan user interface by an Administrator user;
- can contain any combination of import, export, and delete actions.
The steps to run a process action are:
- Get the list of process actions.
GET https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/processes
- Start the process action.
POST https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/processes/{processesID}/tasks
- Get the status of the process task
GET https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/processes/{processesID}/tasks/{taskID}
- Get the list of chunks in a failure dump (if any)
GET https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/processes/{processesID}/tasks/{taskid}/dumps/{objectID}/chunks
- Download the dump file (if any)
GET https://api.anaplan.com/2/0/workspaces/{workspaceID}/models/{modelID}/processes/{processesID}/dumps/{objectID}