GET /service/api/console/gsm/{gsmKey}/sites/{siteId}/dnsp/mappings
Returns the defined mappings of DNS Protection Policies for a GSM parent keycode, filtered by the given site.
Request Information
URI Parameters
| Name | Description | Type | Additional Information |
|---|---|---|---|
| gsmKey |
The GSM console keycode. |
string |
Required |
| siteId |
The identifier of the site to query information for. |
string |
Required |
URI Sample(s)
|
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/4A26-5F97-6F2A-4045-A0CE/sites/cc763965-557a-4426-b473-bcfe2183e2eb/dnsp/mappings
|
Body Parameters
None.
Response Information
Resource Description
Information about DNS Protection policy mappings.
GetDNSPPolicyMappingsResponseModel| Name | Description | Type | Additional Information |
|---|---|---|---|
| TotalCount |
Total number of policy mappings available. |
integer |
None. |
| PolicyMappings |
The list of mappings. |
Collection of GetDNSPPolicyMappingsResponseModel_Mapping |
None. |
Sample Response
{
"TotalCount": 2,
"PolicyMappings": [
{
"Id": "73ea72d9-07d3-46c3-9a27-349b59af5bb4",
"Type": "StaticIP",
"Value": "95.216.200.124",
"DNSPolicyId": "2dad33a8-cfab-43ae-851d-7600338765d3"
},
{
"Id": "b55720f0-20c4-4fdb-999a-1ae05e92751a",
"Type": "StaticIP",
"Value": "95.60.46.118",
"DNSPolicyId": "876b0ec0-7c2b-403f-a93e-efe533397bbf"
}
]
}
<GetDNSPPolicyMappingsResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.Console.Models">
<PolicyMappings>
<GetDNSPPolicyMappingsResponseModel_Mapping>
<DNSPolicyId>2dad33a8-cfab-43ae-851d-7600338765d3</DNSPolicyId>
<Id>73ea72d9-07d3-46c3-9a27-349b59af5bb4</Id>
<Type>StaticIP</Type>
<Value>95.216.200.124</Value>
</GetDNSPPolicyMappingsResponseModel_Mapping>
<GetDNSPPolicyMappingsResponseModel_Mapping>
<DNSPolicyId>876b0ec0-7c2b-403f-a93e-efe533397bbf</DNSPolicyId>
<Id>b55720f0-20c4-4fdb-999a-1ae05e92751a</Id>
<Type>StaticIP</Type>
<Value>95.60.46.118</Value>
</GetDNSPPolicyMappingsResponseModel_Mapping>
</PolicyMappings>
<TotalCount>2</TotalCount>
</GetDNSPPolicyMappingsResponseModel>