Public/Get-MerakiOrganizationBrandingPolicies.ps1
function Get-MerakiOrganizationBrandingPolicies { <# .SYNOPSIS Retrieves branding policies for a Meraki organization. .DESCRIPTION This function retrieves branding policies for a Meraki organization using the Meraki Dashboard API. It requires an authentication token for the API, and the ID of the organization for which the branding policies should be retrieved. .PARAMETER AuthToken The authentication token for the Meraki Dashboard API. .PARAMETER OrgID The ID of the organization for which the branding policies should be retrieved. If not specified, the function will use the ID of the first organization returned by the Get-MerakiOrganizations function. .EXAMPLE PS C:\> Get-MerakiOrganizationBrandingPolicies -AuthToken $AuthToken -OrgID $OrganizationID Retrieves branding policies for the specified organization. .NOTES This function requires the Get-MerakiOrganizations function. .LINK https://developer.cisco.com/meraki/api-v1/#!get-organization-branding-policies #> [CmdletBinding()] param ( [parameter(Mandatory=$true)] [string]$AuthToken, [parameter(Mandatory=$false)] [string]$OrganizationID = (Get-MerakiOrganizations -AuthToken $AuthToken).id ) try { $header = @{ "X-Cisco-Meraki-API-Key" = $AuthToken } $response = Invoke-RestMethod -Method Get -Uri "https://api.meraki.com/api/v1/organizations/$OrganizationID/brandingPolicies" -Header $header return $response } catch { Write-Error $_ } } |