Reference for https://buildcont.tpcx.com:17143/uiserver0/ui/full/v1/fastedit/servicesList

Get list of valid services for fast edit

Url: https://buildcont.tpcx.com:17143/uiserver0/ui/full/v1/fastedit/servicesList

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:

<ArrayOfFastEditWindowInfo>
  <FastEditWindowInfo>
    <WindowLabel>String content</WindowLabel>
    <ClassName>String content</ClassName>
    <Type>String content</Type>
    <AdditionalParameters>String content</AdditionalParameters>
  </FastEditWindowInfo>
  <FastEditWindowInfo>
    <WindowLabel>String content</WindowLabel>
    <ClassName>String content</ClassName>
    <Type>String content</Type>
    <AdditionalParameters>String content</AdditionalParameters>
  </FastEditWindowInfo>
</ArrayOfFastEditWindowInfo>

The following is the response Xml Schema:

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="ArrayOfFastEditWindowInfo" nillable="true" type="ArrayOfFastEditWindowInfo" />
  <xs:complexType name="ArrayOfFastEditWindowInfo">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="unbounded" name="FastEditWindowInfo" nillable="true" type="FastEditWindowInfo" />
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="FastEditWindowInfo">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="1" name="WindowLabel" type="xs:string" />
      <xs:element minOccurs="0" maxOccurs="1" name="ClassName" type="xs:string" />
      <xs:element minOccurs="0" maxOccurs="1" name="Type" type="xs:string" />
      <xs:element minOccurs="0" maxOccurs="1" name="AdditionalParameters" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>