Reference for https://buildcont.tpcx.com:17143/uiserver0/ui/full/v1/fastedit/access?window={WINDOWCLASSNAME}&role={ROLE}
Validate if the window has enough permissions to be used
Url: https://buildcont.tpcx.com:17143/uiserver0/ui/full/v1/fastedit/access?window={WINDOWCLASSNAME}&role={ROLE}
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:
<PermissionAccess> <Allowed>true</Allowed> <AllowedBySecurity>true</AllowedBySecurity> <AllowedByRole>true</AllowedByRole> </PermissionAccess>
The following is the response Xml Schema:
<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema"> <xs:element name="PermissionAccess" nillable="true" type="PermissionAccess" /> <xs:complexType name="PermissionAccess"> <xs:sequence> <xs:element minOccurs="1" maxOccurs="1" name="Allowed" type="xs:boolean" /> <xs:element minOccurs="1" maxOccurs="1" name="AllowedBySecurity" type="xs:boolean" /> <xs:element minOccurs="1" maxOccurs="1" name="AllowedByRole" type="xs:boolean" /> </xs:sequence> </xs:complexType> </xs:schema>