Update organization

Namespace: microsoft.graph

Update the properties of the currently authenticated organization. In this case, organization is defined as a collection of exactly one record, and so its ID must be specified in the request. The ID is also known as the tenantId of the organization.

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) Organization.ReadWrite.All Not available.
Delegated (personal Microsoft account) Not supported. Not supported.
Application Organization.ReadWrite.All Not available.

For delegated scenarios, the signed-in user must have at least one of the following Microsoft Entra roles.

  • AdHoc License Administrator
  • Application Administrator
  • Authentication Administrator
  • Azure Information Protection Administrator
  • Azure Information Protection Administrator
  • Billing Administrator
  • Cloud Application Administrator
  • Compliance Data Administrator
  • Customer LockBox Access Approver
  • Customer LockBox Access Approver
  • Desktop Analytics Administrator
  • Directory Readers
  • Directory Reviewer
  • Directory Writers
  • Dynamics 365 Administrator
  • Dynamics 365 Administrator
  • Global Reader
  • Guest User
  • Helpdesk Administrator
  • Insights Administrator
  • Kaizala Administrator
  • License Administrator
  • Mailbox Administrator
  • Microsoft Managed Desktop Administrator
  • Microsoft Store for Business User
  • Modern Commerce Administrator
  • Power BI Administrator
  • Power BI Administrator
  • Privileged Authentication Administrator
  • Privileged Role Administrator
  • Restricted Guest User
  • Security Administrator
  • Security Operator
  • Security Reader
  • Service Support Administrator
  • Teams Administrator
  • Teams Communications Administrator
  • Teams Communications Support Engineer
  • Teams Communications Support Specialist
  • User
  • User Administrator
  • Volume Licensing Business Center User
  • Volume Licensing Service Center User

Applications granted the User.Read permission are able to read only the id, displayName, and verifiedDomains properties of the organization. All other properties will return with null values. To read all properties, use at least Organization.Read.All.

HTTP request

PATCH /organization/{id}

Request headers

Name Description
Authorization Bearer {token}. Required. Learn more about authentication and authorization.
Content-Type application/json

Request body

In the request body, supply the values for relevant fields that should be updated. Existing properties that are not included in the request body will maintain their previous values or be recalculated based on changes to other property values. For best performance, you shouldn't include existing values that haven't changed.

Property Type Description
marketingNotificationEmails String collection Notes: not nullable.
privacyProfile privacyProfile The privacy profile of an organization (set statementUrl and contactEmail).
securityComplianceNotificationMails String collection
securityComplianceNotificationPhones String collection
technicalNotificationMails String collection Notes: not nullable.

Response

If successful, this method returns a 204 No Content response code.

Example

Request

PATCH https://graph.microsoft.com/v1.0/organization/84841066-274d-4ec0-a5c1-276be684bdd3
Content-type: application/json

{
  "marketingNotificationEmails" : ["marketing@contoso.com"],
  "privacyProfile" :
    {
      "contactEmail":"alice@contoso.com",
      "statementUrl":"https://contoso.com/privacyStatement"
    },
  "securityComplianceNotificationMails" : ["security@contoso.com"],
  "securityComplianceNotificationPhones" : ["(123) 456-7890"],
  "technicalNotificationMails" : ["tech@contoso.com"]
}

Response

HTTP/1.1 204 No Content