Get Group Description Get information about the specified group. Requests Syntax GET http[s]://{datapathDNSname}/_rest_/group/{group UUID, name, or other unique attribute}/ To determine the UUID for a group, see Get Groups. Responses Response Elements <Data> <BuiltIn>TRUE|FALSE</BuiltIn> <Id>{string}</Id> <Name>{string}</Name></Data> where the response elements are defined as follows: Parameter Description Data The container for the response. BuiltIn Whether the group is a standard group automatically available on the gateway. Id The UUID for the group. Name The name of the group. Example Sample Request This request gets information about the group with the name “group1”. GET http://blackpearl-hostname/_rest_/group/group1 HTTP/1.1 Sample Response HTTP/1.1 200 OK<Data> <BuiltIn>FALSE</BuiltIn> <Id>d8932062-3f22-4cd5-b296-b6d5d3558889</Id> <Name>group1</Name></Data>