GET Utility/GetRestrictedPropertyGroups
Returns the list of restricted property groups from the API setup
Request Information
URI Parameters
Body Parameters
Response Information
Resource Description
Returns the list of restricted property groups from the API setup
AgvUtilityRestrictedPropertyGroupName | Description | Type | Additional Information |
---|---|---|---|
Status |
0 - Success; 1 - An error occurred; 2 - An error occurred; 3 - Descriptive message, process was successful |
string | |
Message |
Informational message that corresponds to the Status returned; 0 - Message will be "OK"; 1 - Detailed message returned to give user an indication of what went wrong; 2 - Less detailed message returned that may not mean anything to the user but that the application might use to take a corrective action; 3 - Not an error but something the user might need to know |
string | |
Count |
Number of results returned |
string | |
Data |
List of properties and values returned for each restricted property group that matches the request |
Collection of RestrictedPropertyGroup |
Response Formats
application/json, text/json
{ "Status": "sample string 1", "Message": "sample string 2", "Count": "2", "Data": [ { "Name": "sample string 2", "DisplayName": "sample string 3" }, { "Name": "sample string 2", "DisplayName": "sample string 3" } ] }
application/xml, text/xml
<AgvUtilityRestrictedPropertyGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgvWebAPICSharp.Models.Utility"> <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/SSI.API"> <d2p1:ClsApi.RestrictedPropertyGroup> <d2p1:DisplayName>sample string 3</d2p1:DisplayName> <d2p1:Name>sample string 2</d2p1:Name> </d2p1:ClsApi.RestrictedPropertyGroup> <d2p1:ClsApi.RestrictedPropertyGroup> <d2p1:DisplayName>sample string 3</d2p1:DisplayName> <d2p1:Name>sample string 2</d2p1:Name> </d2p1:ClsApi.RestrictedPropertyGroup> </Data> <Message>sample string 2</Message> <Status>sample string 1</Status> </AgvUtilityRestrictedPropertyGroup>