Reference for https://buildcont.tpcx.com:17143/uiserver0/ui/full/v1/fastedit/service?window={WINDOWCLASSNAME}

Validate if provided window is available for fastedit

Url: https://buildcont.tpcx.com:17143/uiserver0/ui/full/v1/fastedit/service?window={WINDOWCLASSNAME}

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:

<ArrayOfDataValue>
  <DataValue>
    <Value>String content</Value>
    <Name>String content</Name>
  </DataValue>
  <DataValue>
    <Value>String content</Value>
    <Name>String content</Name>
  </DataValue>
</ArrayOfDataValue>

The following is the response Xml Schema:

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