Reference for https://buildcont.tpcx.com:17143/uiserver0/ui/full/v1/fastedit/windowroles/{WINDOWCLASSNAME}

Get the list of roles for a window

Url: https://buildcont.tpcx.com:17143/uiserver0/ui/full/v1/fastedit/windowroles/{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:

<ArrayOfFastEditorRoles>
  <FastEditorRoles>
    <FastEditRoleUid>2147483647</FastEditRoleUid>
    <ClassName>String content</ClassName>
    <RoleUid>2147483647</RoleUid>
    <Role>String content</Role>
    <Active>String content</Active>
  </FastEditorRoles>
  <FastEditorRoles>
    <FastEditRoleUid>2147483647</FastEditRoleUid>
    <ClassName>String content</ClassName>
    <RoleUid>2147483647</RoleUid>
    <Role>String content</Role>
    <Active>String content</Active>
  </FastEditorRoles>
</ArrayOfFastEditorRoles>

The following is the response Xml Schema:

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="ArrayOfFastEditorRoles" nillable="true" type="ArrayOfFastEditorRoles" />
  <xs:complexType name="ArrayOfFastEditorRoles">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="unbounded" name="FastEditorRoles" nillable="true" type="FastEditorRoles" />
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="FastEditorRoles">
    <xs:sequence>
      <xs:element minOccurs="1" maxOccurs="1" name="FastEditRoleUid" type="xs:int" />
      <xs:element minOccurs="0" maxOccurs="1" name="ClassName" type="xs:string" />
      <xs:element minOccurs="1" maxOccurs="1" name="RoleUid" type="xs:int" />
      <xs:element minOccurs="0" maxOccurs="1" name="Role" type="xs:string" />
      <xs:element minOccurs="0" maxOccurs="1" name="Active" type="xs:string" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>