Activities from Work portal completion data

<< Click to Display Table of Contents >>

Navigation:  Low-code Process Automation > Studio Cloud - Authoring environment > Bizagi Studio > Bizagi from external applications > Bizagi API > OData RESTful services > Bizagi API examples > Data services examples > Cases from Work portal > Activities from Work portal cases >

Activities from Work portal completion data

Overview

Bizagi features an OData service which handles aspects of the Experience design.

Through the Cases/Workitems URI, you can handle case data related to the pending activities of a user (not Persona), as described at Activities from Work portal cases.

This section describes how to advance an activity of a specific case, given its ID.

 

Resource URL

Start with the following URL:

[your_bizagi_project_url]/odata/data/cases([ID_case])/workitems([ID_workitem])/next

 

Customizations:

[ID_case]: The GUID of a case as returned when invoking Cases from Work portal.

[ID_workitem]: The GUID of a workitem as returned when invoking Activities from Work portal cases.

[your_bizagi_project_url]: The URL where end users access the Bizagi Work portal.

For Automation Service projects, the URL would be:

https://[project_environment]-[your_project]-[your_company].bizagi.com/odata/data/cases([ID_case])/workitems([ID_workitem])/next

 

Example

To complete a workitem, invoke the URL described above using an HTTP POST.

Consider including the following JSON structure in the body to send parameters:

{

      "startParameters": [

       {

           "xpath": "[xpath_name]",

           "value": "[value_for_xpath]"

       }

   ]

}

 

Customizations:

[xpath_name]: The exact Xpath  expected by parameters of the workitem.

[value_for_xpath]: The value you want to set to the Xpath parameter.

 

If you have more than one parameter, use:

{

      "startParameters": [

       {

           "xpath": "[xpath1_name]",

           "value": "[value_for_xpath1]"

       },

       {

           "xpath": "[xpath2_name]",

           "value": "[value_for_xpath2]"

       }

   ]

}

 

If no parameters are expected (not explicitly required), use:

{

 "startParameters": [

 ]

}

 

note_pin

Only parameters that exist within the form can be sent in the JSON. If you want to query the available parameters you can use the following method:

 

https://[your_server]/[your_project]/odata/data/cases([ID_case])/workitems

 

To filter the search with parameters, consider the notes for the different data types, as described at Values and formats for data types.

To dynamically obtain business values that you may need as an input parameter to start a new process, refer to Related entities services.

 

The following image illustrates data in the body you can send in an HTTP POST.

 

OData_Next2

 

The response you obtain confirming the completion of the activity or event contains the current workitems of the case.

 


Last Updated 12/28/2022 4:34:04 PM