Grant Case Access

<< Click to Display Table of Contents >>

Navigation:  Low-code Process Automation > Studio Cloud - Authoring environment > Bizagi Studio > Bizagi from external applications > Bizagi API > Alternative SOAP services > Available SOAP web services > WorkflowEngineSOA Web methods >

Grant Case Access

Overview

This Web method is used to assign privileged users to cases in Bizagi (from an external application).

 

This method receives a single input having mainly: any number of UserNames of the users to be added as privileged users and the respective case number.

Through this method, a user is added to a privileged list of users who have access to a Process instance (case). The values passed must be known in advance and must be sent from an external system

For further information about grant case access, please refer to Case security.

 

For the grantCaseAccess method, the request and response XML's are of the native .NET XmlDocument type.

For the grantCaseAccessAsString method the same XML structure is handled, but this parameter is sent as a string type using CDATA.

 

Input

 

Input Schema

The following shows a sample XML structure of information to send to Bizagi:

 

<?xml version="1.0" encoding="utf-8"?>

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">

<xs:element name="BizAgiWSParam">

  <xs:complexType>

    <xs:sequence>

      <xs:element name="CaseAccessXML" type="xs:string" minOccurs="0"/>

    </xs:sequence>

  </xs:complexType>

</xs:element>

</xs:schema>

 

Input Parameters

BizAgiWSParam: Root node.

CaseAccessXML: Include here the information (XML-structured) of the cases where you want to add users to the privileged list of users who have access to them.

For further information about the expected structured for the business information contained in this Entities element, refer to Bizagi's data model XML schemas.

 

Input Example

With the following sample XML, the users dtaylor and efeller will be added to case 354. To grant case access, the case must not be closed and must exist.

 

GrantCaseAccess Method Input

<![CDATA[<BizAgiWSParam>

 <CaseAccess idCase='354'>

   <UserName>domain\dtaylor</UserName>

   <UserName>domain\efeller</UserName>

 </CaseAccess>

</BizAgiWSParam>]]>

 

GrantCaseAccessAsString Method Input

<caseAccessXML>

 <![CDATA[<BizAgiWSParam>

   <CaseAccess idCase='354'>

     <UserName>domain\dtaylor</UserName>

     <UserName>domain\efeller</UserName>  

   </CaseAccess>

 </BizAgiWSParam>]]>

</caseAccessXML>

 

Output

 

Output Parameters

ErrorMessage: Message explaining why the error occurred. Visible when the error is caused by wrong data.

CaseAccess: Cases processed during the invocation.

 

Output Example

In the following example, we illustrate a returned XML-structured response from Bizagi SOA layer, in which we can see:

The set of users has been added to the case 354.

 

GrantCaseAccess_01

 

The user could not be added. Within the response, error detail is found at ErrorMessage, in which the service informs that the case 3294 does not exist or is closed.

 

GrantCaseAccess_03

 

Related Web methods

If you wish to revoke the access to a case, use the revokeCaseAccessAsString or revokeCaseAccess Web method.

For further information refer to the Revoke Case Access article.


Last Updated 1/6/2022 5:13:58 PM