Create Global Data Policy ACL for a Group Create an ACL for all data policies, including those already created and those that will be created, granting the specified group access to use any data policy. Note: Only administrators are allowed to create a global data policy ACL. Requests Syntax POST http[s]://{datapathDNSname}/_rest_/data_policy_acl/?group_id={string} Request Parameters Parameter Description Required group_id The UUID, name, or other unique attribute for the group to which you want to grant permission to use all data policies. yes Responses Response Elements <Data> <DataPolicyId>{string}</DataPolicyId> <GroupId>{string}</GroupId> <Id>{string}</Id> <UserId>{string}</UserId></Data> where the response elements are defined as follows: Parameter Description Data The container for the response. DataPolicyId Always null for this operation. GroupId The UUID for the group granted access. Id The UUID for the ACL. UserId Always null for this operation. Example Sample Request This request creates an ACL for the group with the UUID 29090054-ecfb-4d64-8e68-87194b8a1c35 to be able to use any data policy. POST http[s]://blackpearl-hostname/_rest_/data_policy_acl/?group_id=29090054-ecfb-4d64-8e68-87194b8a1c35 HTTP/1.1 Sample Response HTTP/1.1 201 OK<Data> <DataPolicyId/> <GroupId>29090054-ecfb-4d64-8e68-87194b8a1c35</GroupId> <Id>dbb1643e-081e-4f32-b26f-ba5dd80d77c4</Id> </UserId></Data>