Get multiTenantOrganizationMember

Namespace: microsoft.graph

Get a tenant and its properties in the multitenant 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) MultiTenantOrganization.ReadWrite.All Not available.
Delegated (personal Microsoft account) Not supported. Not supported.
Application MultiTenantOrganization.ReadWrite.All Not available.

If called with MultiTenantOrganization.ReadBasic.All permission, the caller can only read the displayName and tenantId properties.

The signed-in user must also be assigned at least one of the following directory roles:

  • Security Reader
  • Global Reader

HTTP request

GET /tenantRelationships/multiTenantOrganization/tenants/{tenantId}

Optional query parameters

This method supports the $select OData query parameter to help customize the response. For general information, see OData query parameters.

Request headers

Name Description
Authorization Bearer {token}. Required.

Request body

Don't supply a request body for this method.

Response

If successful, this method returns a 200 OK response code and a multiTenantOrganizationMember object in the response body.

Examples

The following example gets a tenant and its properties in the multitenant organization.

Request

GET https://graph.microsoft.com/v1.0/tenantRelationships/multiTenantOrganization/tenants/1fd6544e-e994-4de2-9f1b-787b51c7d325

Response

HTTP/1.1 200 OK
Content-Type: application/json

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#tenantRelationships/multiTenantOrganization/tenants/$entity",
    "tenantId": "1fd6544e-e994-4de2-9f1b-787b51c7d325",
    "displayName": "Contoso",
    "addedDateTime": "2023-05-26T22:05:23Z",
    "joinedDateTime": null,
    "addedByTenantId": "1fd6544e-e994-4de2-9f1b-787b51c7d325",
    "role": "owner",
    "state": "active",
    "transitionDetails": null
}

If an update is in progress, transitionDetails lists information about the update. The following response indicates the role is being changed from member to owner.

HTTP/1.1 200 OK
Content-Type: application/json

{
    "@odata.context": "https://graph.microsoft.com/v1.0/$metadata#tenantRelationships/multiTenantOrganization/tenants/$entity",
    "tenantId": "5036a0a0-a7a4-4933-9086-5dd54535dd6e",
    "displayName": "Woodgrove Bank",
    "addedDateTime": "2023-05-27T21:52:40Z",
    "joinedDateTime": null,
    "addedByTenantId": "1fd6544e-e994-4de2-9f1b-787b51c7d325",
    "role": "member",
    "state": "pending",
    "transitionDetails": {
        "desiredState": "active",
        "desiredRole": "owner",
        "status": "notStarted",
        "details": null
    }
}