次の方法で共有


connectedOrganization を作成する

名前空間: microsoft.graph

重要

Microsoft Graph の /beta バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。

新しい connectedOrganization オブジェクトを作成します。

この API は、次の国内クラウド展開で使用できます。

グローバル サービス 米国政府機関 L4 米国政府機関 L5 (DOD) 21Vianet が運営する中国

アクセス許可

この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。 アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、「アクセス許可のリファレンス」を参照してください。

アクセス許可の種類 最小特権アクセス許可 より高い特権のアクセス許可
委任 (職場または学校のアカウント) EntitlementManagement.ReadWrite.All 注意事項なし。
委任 (個人用 Microsoft アカウント) サポートされていません。 サポートされていません。
アプリケーション EntitlementManagement.ReadWrite.All 注意事項なし。

HTTP 要求

POST /identityGovernance/entitlementManagement/connectedOrganizations

要求ヘッダー

名前 説明
Authorization ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。
Content-Type application/json. 必須です。

要求本文

要求本文で、 connectedOrganization オブジェクトの JSON 表現を指定します。

次の表に、 connectedOrganization を作成するときに必要なプロパティを示します。

プロパティ 説明
displayName String 接続されたorganization名。
説明 String 接続されたorganizationの説明。
identitySources identitySource コレクション 1 つの要素を持つコレクション。この接続されたorganization内の初期 ID ソース。
state connectedOrganizationState 接続されたorganizationの状態は、要求者スコープの種類がAllConfiguredConnectedOrganizationSubjects割り当てポリシーを適用できるかどうかを定義します。 可能な値は、configuredproposed です。

identitySources コレクションの単一メンバーは、 domainIdentitySource 型または externalDomainFederation 型である必要があります。 呼び出し元が domainIdentitySource を提供し、呼び出しが成功し、ドメインがMicrosoft Entra テナントの登録済みドメインに対応する場合、作成された結果の connectedOrganization には、azureActiveDirectoryTenant 型の 1 つのメンバーを含む identitySources コレクションが作成されます。

応答

成功した場合、このメソッドは応答コード 201 Created と、応答本文に新しい connectedOrganization オブジェクトを返します。

例 1: 接続されたorganizationを作成する

要求

POST https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/connectedOrganizations/
Content-Type: application/json

{
  "displayName":"Connected organization name",
  "description":"Connected organization description",
  "identitySources": [
    {
      "@odata.type": "#microsoft.graph.domainIdentitySource",
      "domainName": "example.com",
      "displayName": "example.com"
      }
  ],
  "state":"proposed"
}

応答

注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。

HTTP/1.1 201 Created
Content-type: application/json

{
  "id": "006111db-0810-4494-a6df-904d368bd81b",
  "displayName":"Connected organization name",
  "description":"Connected organization description",
  "createdBy": "admin@contoso.com",
  "createdDateTime": "2020-06-08T20:13:53.7099947Z",
  "modifiedBy": "admin@contoso.com",
  "modifiedDateTime": "2020-06-08T20:13:53.7099947Z",
  "state":"proposed"
}

例 2: テナント ID に基づいて identitySource を使用して接続されたorganizationを作成する

この例では、テナント ID に基づいて ID ソースを使用して接続されたorganizationを作成する方法を示します。 テナント ID は、 tenantRelationship: findTenantInformationByDomainName 呼び出しを使用して、ドメイン名によって見つけることができます。

要求

POST https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/connectedOrganizations/
Content-Type: application/json

{
  "displayName":"Connected organization name",
  "description":"Connected organization description",
  "identitySources": [
    {
      "@odata.type": "#microsoft.graph.azureActiveDirectoryTenant",
      "displayName": "Contoso",
      "tenantId": "aaaabbbb-0000-cccc-1111-dddd2222eeee"
      }
  ],
  "state":"proposed"
}

応答

注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。

HTTP/1.1 201 Created
Content-type: application/json

{
  "@odata.context": "https://graph.microsoft.com/beta/$metadata#identityGovernance/entitlementManagement/connectedOrganizations/$entity",
  "id": "922c86cf-65b8-4d94-b6a6-477dde331c7b",
  "displayName": "Connected organization name",
  "description": "Connected organization description",
  "createdDateTime": "2024-10-29T21:55:39.6051923Z",
  "modifiedDateTime": "2024-10-29T21:55:39.6051923Z",
  "state": "proposed",
  "identitySources": []
}