Enforce response to API request returns HTTP 415 and no other data is returned.
Release : 16.0
ContentType and headers missing from powershell command used to connect to Enforce.
Add ContentType and Accept header to the powershell command to resolve the HTTP 415 error returned from Enforce.
Example: Powershell command (New lines added for readability.)
Invoke-WebRequest "https://$url/ProtectManager/webservices/v2/senderRecipientPattern/$idToUpdate" -Method Put -Body $outRaw -WebSession $dlpsession
-ContentType "application/json"
-Headers @{ "Accept" = "application/json" }