Workflow Related Operations

19.4.3.7 WF_GetAvailableWorkflows

DESCRIPTION 

Allows an authenticated user to retrieve a list of all T-workflows currently available in the system. There will be retrieved only those T-workflows for which the authenticated user has rights.

INPUT

  • _user: Login name of the executor;
  • _pwd: Password of the executor;

OUTPUT 

<wkf idInstanceclass="1" name="test_load_balancing" description="a balancing workflow"/>
<wkf idInstanceclass="2" name="test_partial_retrieve" description="a partial retrieve workflow"/> 

XSD (XML Schema Definition)

<?xml version="1.0" encoding="utf-8"?>
<xs:schema id="WSApiResponse" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="WSApiResponse" msdata:IsDataSet="true" msdata:Locale="en-US">
  <xs:complexType>
    <xs:choice minOccurs="0" maxOccurs="unbounded">
      <xs:element name="Function">
        <xs:complexType>
          <xs: sequence>
            <xs:element name="wkf" minOccurs="0" maxOccurs="unbounded">
              <xs:complexType>
                <xs:attribute name="idInstanceclass" type="xs:string" />
                <xs:attribute name="name" type="xs:string" />
                <xs:attribute name="description" type="xs:string" />
              </xs:complexType>
            </xs: element>
          </xs: sequence>
          <xs:attribute name="Name" type="xs:string" />
        </xs:complexType>
      </xs: element>
    </xs: choice>
  </xs:complexType>
</xs: element>
</xs: schema>