GET /service/api/console/gsm/{gsmKey}/policies/{policyId}
Gets information about a GSM policy.
Request Information
URI Parameters
Name | Description | Type | Additional Information |
---|---|---|---|
gsmKey |
The GSM console keycode. |
string |
Required |
policyId |
The identifier of the policy to query information for. |
string |
Required |
URI Sample(s)
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/5D11-A414-6A6E-438A-BC36/policies/6ff4f979-65b3-44ba-9d05-c806599757f1
|
Body Parameters
None.
Response Information
Resource Description
Information about the desired GSM policy.
GetGSMPoliciesResponseModelName | Description | Type | Additional Information |
---|---|---|---|
TotalCount |
Total number of policies available. |
integer |
None. |
Deleted |
Value (true/false) indicating if any of the policies are deleted. |
boolean |
None. |
Policies |
List of policy details records. |
Collection of GetGSMPoliciesResponseModel_Policy |
None. |
Sample Response
{ "TotalCount": 1, "Deleted": false, "Policies": [ { "PolicyId": "81988849-c610-4e9b-8fcc-f423bf8e907e", "DateCreated": "2025-07-17T20:45:54.8006642Z", "PolicyName": "Test Policy 1", "LivePolicy": true, "PendingPolicy": false, "PolicyDescription": "Description of test policy 1", "Deleted": false, "Canned": false, "DefaultSetting": false, "PolicyType": "Advanced" } ] }
<GetGSMPoliciesResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models"> <Deleted>false</Deleted> <Policies> <GetGSMPoliciesResponseModel_Policy> <Canned>false</Canned> <DateCreated>2025-07-17T20:45:54.8006642Z</DateCreated> <DefaultSetting>false</DefaultSetting> <Deleted>false</Deleted> <LivePolicy>true</LivePolicy> <PendingPolicy>false</PendingPolicy> <PolicyDescription>Description of test policy 1</PolicyDescription> <PolicyId>81988849-c610-4e9b-8fcc-f423bf8e907e</PolicyId> <PolicyName>Test Policy 1</PolicyName> <PolicyType>Advanced</PolicyType> </GetGSMPoliciesResponseModel_Policy> </Policies> <TotalCount>1</TotalCount> </GetGSMPoliciesResponseModel>