Attempting to update organizationalBrandingProperties via the below API
PATCH https://graph.microsoft.com/v1.0/organization/{tenant id}/branding/bannerLogo
Content-Type: image/jpeg
<Image>
However, Receive the below error
Code : Request_UnsupportedQuery
Message : Invalid Locale id value bannerLogo. It must be valid ISO-639 Locale
Only attempting to change the default branding not localized,
Have attempted to add the Content-Language header also with no luck.
Able to use below API to change any String details without issue,
PATCH https://graph.microsoft.com/v1.0/organization/d69179bf-f4a4-41a9-a9de-249c0f2efb1d/branding
Content-Type: application/json
{
"signInPageText":"Default",
"usernameHintText":"DefaultHint"
}
P.S using postman for testing


