This page allows the management of "Automated Tasks". Automated tasks execute a function as part of working a process task. There are 2 basic types of automated tasks:
When designing a process, create an automated task (task of type Automated) and then select one of the configured automated tasks from this list. Akumina handles the scheduling of the execution of the automated task (based on the due date of the task) and the function call. To integrate the function execution with the completion of the associated Process task, we offer a "Task Wrapper". If you don't use the "Task Wrapper" option, your function will need to perform the integration with the associated process task.
Manage configured automated tasks. This is the default "Automated Tasks" view.
You can optionally have Akumina handle the integration of the execution of the automated task with the associated Process task.
Values from the JSON response can be extracted and used to set/update Task properties. Some examples below will be given to explain how to specify the JSON response property path for a returned person's first name (John).
Assuming a response object that looks like:
{ "firstname": "John", "lastname": "Smith" }
you would use: firstname
Assuming a response object that looks like:
{ "name": {"first": "John", "last": "Smith" }}
you would use: name/first
Assuming a response object that looks like:
{ "names": }
you would use: names/0/first
Assuming a response object that looks like:
you would use: 1/first
Replacement tokens allow dynamic values, from the process instance, to be used in the function call.
Configure the HTTP call.
Configure the Method call.