We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce2a784 commit 90f00c7Copy full SHA for 90f00c7
1 file changed
Modules/CIPPCore/Public/Entrypoints/HTTP Functions/Tenant/Conditional/Invoke-EditCAPolicy.ps1
@@ -32,7 +32,7 @@ Function Invoke-EditCAPolicy {
32
$properties["displayName"] = $DisplayName
33
}
34
35
- $Request = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta//identity/conditionalAccess/policies/$($ID)" -tenantid $TenantFilter -type PATCH -body ($properties | ConvertTo-Json) -asapp $true
+ $Request = New-GraphPOSTRequest -uri "https://graph.microsoft.com/beta/identity/conditionalAccess/policies/$($ID)" -tenantid $TenantFilter -type PATCH -body ($properties | ConvertTo-Json) -asapp $true
36
37
$Result = "Successfully updated CA policy $($ID)"
38
if ($State) { $Result += " state to $($State)" }
0 commit comments