Public/Set-MerakiOrganizationBrandingPolicy.ps1
function Set-MerakiOrganizationBrandingPolicy { <# .SYNOPSIS Updates an existing branding policy for a Meraki organization using the Meraki Dashboard API. .DESCRIPTION The Set-MerakiOrganizationBrandingPolicy function allows you to update an existing branding policy for a specified Meraki organization by providing the authentication token, policy ID, and policy configuration. .PARAMETER AuthToken The authentication token (API key) required to access the Meraki Dashboard API. .PARAMETER PolicyId The ID of the branding policy to be updated. .PARAMETER PolicyConfig The JSON configuration for the branding policy to be updated. Refer to the JSON schema for required parameters and their format. .EXAMPLE $PolicyConfig = [PSCustomObject]@{ name = "Updated branding policy" enabled = $true adminSettings = @{ appliesTo = "All organization admins" values = @() } customLogo = @{ enabled = $true image = @{ contents = "base64-encoded-image-contents" format = "png" } } helpSettings = @{ apiDocsSubtab = "default or inherit" casesSubtab = "default or inherit" ciscoMerakiProductDocumentation = "default or inherit" communitySubtab = "default or inherit" dataProtectionRequestsSubtab = "default or inherit" firewallInfoSubtab = "default or inherit" getHelpSubtab = "default or inherit" getHelpSubtabKnowledgeBaseSearch = "default or inherit" hardwareReplacementsSubtab = "default or inherit" helpTab = "default or inherit" helpWidget = "default or inherit" newFeaturesSubtab = "default or inherit" smForums = "default or inherit" supportContactInfo = "default or inherit" universalSearchKnowledgeBaseSearch = "default or inherit" } } $PolicyConfig = $PolicyConfig | ConvertTo-Json -Compress Set-MerakiOrganizationBrandingPolicy -AuthToken "your-api-token" -PolicyId "1234567890" -PolicyConfig $PolicyConfig This example updates the branding policy with ID "1234567890" for the Meraki organization. The branding policy is configured to enable a custom logo and modify various Help page features. .NOTES The function requires the "Invoke-RestMethod" cmdlet to be available. The function returns the response from the API if the configuration is successful, otherwise, it displays an error message. #> [CmdletBinding()] param ( [parameter(Mandatory=$true)] [string]$AuthToken, [parameter(Mandatory=$true)] [string]$PolicyId, [parameter(Mandatory=$true)] [string]$PolicyConfig, [parameter(Mandatory=$false)] [string]$OrganizationID = (Get-OrgID -AuthToken $AuthToken) ) If($OrganizationID -eq "Multiple organizations found. Please specify an organization ID.") { Return "Multiple organizations found. Please specify an organization ID." } else { try { $header = @{ "X-Cisco-Meraki-API-Key" = $AuthToken "content-type" = "application/json; charset=utf-8" } $body = $PolicyConfig $url = "https://api.meraki.com/api/v1/organizations/$OrganizationId/brandingPolicies/$PolicyId" $response = Invoke-RestMethod -Method Put -Uri $url -headers $header -UserAgent "MerakiPowerShellModule/1.1.0 DocNougat" -Body $body return $response } catch { Write-Debug $_ Throw $_ } } } |