GET /service/api/console/gsm/{gsmKey}/sites/{siteId}/dnsp/mappings/{mappingId}
Returns detailed information for a specified mapping of a DNS Protection policy.
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 |
| mappingId |
The identifier of the policy mapping to query information for. |
string |
Required |
URI Sample(s)
|
GET
|
https://unityapi.webrootcloudav.com/service/api/console/gsm/C152-5FE8-1E66-47B6-A754/sites/e1fa4800-70a3-4b6e-9e53-8ec0aa0c91bf/dnsp/mappings/35b3aaae-8198-46d5-b816-deed6bda04b8
|
Body Parameters
None.
Response Information
Resource Description
Information about a DNS Protection policy mapping.
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": 1,
"PolicyMappings": [
{
"Id": "1f243835-5525-47a8-ab2b-63d0db7c10b7",
"Type": "StaticIP",
"Value": "95.203.110.199",
"DNSPolicyId": "a01b52a8-3462-404f-9b1d-fa4a198f72e3"
}
]
}
<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>a01b52a8-3462-404f-9b1d-fa4a198f72e3</DNSPolicyId>
<Id>1f243835-5525-47a8-ab2b-63d0db7c10b7</Id>
<Type>StaticIP</Type>
<Value>95.203.110.199</Value>
</GetDNSPPolicyMappingsResponseModel_Mapping>
</PolicyMappings>
<TotalCount>1</TotalCount>
</GetDNSPPolicyMappingsResponseModel>