Microsoft Graph · Schema
multiTenantOrganizationJoinRequestTransitionDetails
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| desiredMemberState | object | State of the tenant in the multitenant organization currently being processed. The possible values are: pending, active, removed, unknownFutureValue. Read-only. |
| details | string | Details that explain the processing status if any. Read-only. |
| status | object | Processing state of the asynchronous job. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. Read-only. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.multiTenantOrganizationJoinRequestTransitionDetails",
"title": "multiTenantOrganizationJoinRequestTransitionDetails",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"desiredMemberState": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.multiTenantOrganizationMemberState"
},
{
"type": "object",
"nullable": true
}
],
"description": "State of the tenant in the multitenant organization currently being processed. The possible values are: pending, active, removed, unknownFutureValue. Read-only."
},
"details": {
"type": "string",
"description": "Details that explain the processing status if any. Read-only.",
"nullable": true
},
"status": {
"anyOf": [
{
"$ref": "#/components/schemas/microsoft.graph.multiTenantOrganizationMemberProcessingStatus"
},
{
"type": "object",
"nullable": true
}
],
"description": "Processing state of the asynchronous job. The possible values are: notStarted, running, succeeded, failed, unknownFutureValue. Read-only."
},
"@odata.type": {
"type": "string"
}
}
}