Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Delete the default organizational branding object. To delete the organizationalBranding object, all images (Stream types) must first be removed from the object.
This API is available in the following national cloud deployments.
Global service |
US Government L4 |
US Government L5 (DOD) |
China operated by 21Vianet |
✅ |
✅ |
✅ |
✅ |
Permissions
Choose the permission or permissions marked as least privileged for this API. Use a higher privileged permission or permissions only if your app requires it. For details about delegated and application permissions, see Permission types. To learn more about these permissions, see the permissions reference.
Permission type |
Least privileged permissions |
Higher privileged permissions |
Delegated (work or school account) |
OrganizationalBranding.ReadWrite.All |
Organization.ReadWrite.All |
Delegated (personal Microsoft account) |
Not supported. |
Not supported. |
Application |
OrganizationalBranding.ReadWrite.All |
Not available. |
Important
In delegated scenarios with work or school accounts, the signed-in user must be assigned a supported Microsoft Entra role or a custom role with a supported role permission. Organizational Branding Administrator is the least privileged role supported for this operation.
HTTP request
DELETE /organization/{organizationId}/branding
Request body
In the request body, supply a JSON representation of the default organizationalBranding object. only the id property is required.
Response
If successful, this method returns a 204 No Content
response code.
Examples
Request
DELETE https://graph.microsoft.com/beta/organization/84841066-274d-4ec0-a5c1-276be684bdd3/branding
{
"id": "0"
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Organization.Item.Branding;
var requestBody = new BrandingDeleteRequestBody
{
AdditionalData = new Dictionary<string, object>
{
{
"id" , "0"
},
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
await graphClient.Organization["{organization-id}"].Branding.DeleteAsync(requestBody);
mgc-beta organization branding delete --organization-id {organization-id}
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphorganization "github.com/microsoftgraph/msgraph-beta-sdk-go/organization"
//other-imports
)
requestBody := graphorganization.NewBrandingDeleteRequestBody()
additionalData := map[string]interface{}{
"id" : "0",
}
requestBody.SetAdditionalData(additionalData)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
graphClient.Organization().ByOrganizationId("organization-id").Branding().Delete(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
com.microsoft.graph.beta.organization.item.branding.BrandingDeleteRequestBody brandingDeleteRequestBody = new com.microsoft.graph.beta.organization.item.branding.BrandingDeleteRequestBody();
HashMap<String, Object> additionalData = new HashMap<String, Object>();
additionalData.put("id", "0");
brandingDeleteRequestBody.setAdditionalData(additionalData);
graphClient.organization().byOrganizationId("{organization-id}").branding().delete(brandingDeleteRequestBody);
const options = {
authProvider,
};
const client = Client.init(options);
await client.api('/organization/84841066-274d-4ec0-a5c1-276be684bdd3/branding')
.version('beta')
.delete();
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Organization\Item\Branding\BrandingDeleteRequestBody;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new BrandingDeleteRequestBody();
$additionalData = [
'id' => '0',
];
$requestBody->setAdditionalData($additionalData);
$graphServiceClient->organization()->byOrganizationId('organization-id')->branding()->delete($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Identity.DirectoryManagement
$params = @{
id = "0"
}
Remove-MgBetaOrganizationBranding -OrganizationId $organizationId -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.organization.item.branding.branding_delete_request_body import BrandingDeleteRequestBody
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = BrandingDeleteRequestBody(
additional_data = {
"id" : "0",
}
)
await graph_client.organization.by_organization_id('organization-id').branding.delete(request_body)
Response
The following example shows the response.
HTTP/1.1 204 No Content