Reference for https://buildcont.tpcx.com:17143/uiserver0/ui/full/v1/transaction/services?type={TYPE}

Get the list of windows names. Type may be Form, Report or Window.

Url: https://buildcont.tpcx.com:17143/uiserver0/ui/full/v1/transaction/services?type={TYPE}

HTTP Method: GET

Message direction Format Body
Request N/A The Request body is empty.
Response Xml Example,Schema

The following is an example response Xml body:

<ArrayOfServiceInfo>
  <ServiceInfo>
    <Name>String content</Name>
  </ServiceInfo>
  <ServiceInfo>
    <Name>String content</Name>
  </ServiceInfo>
</ArrayOfServiceInfo>

The following is the response Xml Schema:

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="ArrayOfServiceInfo" nillable="true" type="ArrayOfServiceInfo" />
  <xs:complexType name="ArrayOfServiceInfo">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="unbounded" name="ServiceInfo" nillable="true" type="ServiceInfo" />
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="ServiceInfo">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="1" name="Name" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>