Delete organizationalBranding

Namespace: microsoft.graph

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.

For delegated scenarios, only users with the Oragnizational Branding Administrator Microsoft Entra role can fully manage the organization's branding.

HTTP request

DELETE /organization/{organizationId}/branding

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.

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/v1.0/organization/84841066-274d-4ec0-a5c1-276be684bdd3/branding

{
    "id": "0"
}

Response

The following example shows the response.

HTTP/1.1 204 No Content