Create Group Description Create a group. Requests Syntax POST http[s]://{datapathDNSname}/_rest_/group/?name={string} Request Parameters Parameter Description Required name The name for the group. yes 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. Always FALSE for this request. Id The UUID for the group. Name The name of the group. Example Sample Request This request creates a group with the name “Accounting”. POST http://blackpearl-hostname/_rest_/group/?name=Accounting HTTP/1.1 Sample Response HTTP/1.1 200 OK <Data> <BuiltIn>FALSE</BuiltIn> <Id>3962c577-5ddb-466f-bb56-a0c7e3019c81</Id> <Name>Accounting</Name></Data>