名前空間: microsoft.graph
重要
Microsoft Graph の /beta バージョンの API は変更される可能性があります。 実稼働アプリケーションでこれらの API を使用することは、サポートされていません。 v1.0 で API を使用できるかどうかを確認するには、Version セレクターを使用します。
仮想イベントに新しい virtualEventPresenter オブジェクトを作成します。
現在、サポートされている仮想イベントの種類は virtualEventTownhall、 virtualEventWebinar です。
この API は、次の国内クラウド展開で使用できます。
| グローバル サービス |
米国政府機関 L4 |
米国政府機関 L5 (DOD) |
21Vianet が運営する中国 |
| ✅ |
❌ |
❌ |
❌ |
アクセス許可
この API の最小特権としてマークされているアクセス許可またはアクセス許可を選択します。
アプリで必要な場合にのみ、より高い特権のアクセス許可またはアクセス許可を使用します。 委任されたアクセス許可とアプリケーションのアクセス許可の詳細については、「アクセス許可の種類」を参照してください。 これらのアクセス許可の詳細については、「アクセス許可のリファレンス」を参照してください。
| アクセス許可の種類 |
最小特権アクセス許可 |
より高い特権のアクセス許可 |
| 委任 (職場または学校のアカウント) |
VirtualEvent.ReadWrite |
注意事項なし。 |
| 委任 (個人用 Microsoft アカウント) |
サポートされていません。 |
サポートされていません。 |
| アプリケーション |
サポートされていません。 |
サポートされていません。 |
HTTP 要求
POST /solutions/virtualEvents/townhalls/{townhallId}/presenters
POST /solutions/virtualEvents/webinars/{webinarId}/presenters
| 名前 |
説明 |
| Authorization |
ベアラー {token}。 必須です。
認証と認可についての詳細をご覧ください。 |
| Content-Type |
application/json. 必須です。 |
要求本文
要求本文で、 virtualEventPresenter オブジェクトの JSON 表現を指定します。
virtualEventTownhall で発表者を作成するときに、次のプロパティを指定できます。
virtualEventWebinar で発表者を作成するときに、次のプロパティを指定できます。
応答
成功した場合、このメソッドは応答コード 201 Created と、応答本文に virtualEventPresenter オブジェクトを返します。
例
例 1: テナント内発表者を作成する
次の例は、 virtualEventTownhall で発表者として内部ユーザーを作成する方法を示しています。
要求
次の例は要求を示しています。
POST https://graph.microsoft.com/beta/solutions/virtualEvents/townhalls/502dadea-b5d8-44aa-a851-a0ac496a36bf@09a21d49-f0f3-4b3f-96b6-f381e9430742/presenters
Content-Type: application/json
{
"identity": {
"@odata.type": "#microsoft.graph.communicationsUserIdentity",
"id": "7b7e1acd-a3e0-4533-8c1d-c1a4ca0b2e2b"
}
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models;
var requestBody = new VirtualEventPresenter
{
Identity = new CommunicationsUserIdentity
{
OdataType = "#microsoft.graph.communicationsUserIdentity",
Id = "7b7e1acd-a3e0-4533-8c1d-c1a4ca0b2e2b",
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Solutions.VirtualEvents.Townhalls["{virtualEventTownhall-id}"].Presenters.PostAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-beta-sdk-go/models"
//other-imports
)
requestBody := graphmodels.NewVirtualEventPresenter()
identity := graphmodels.NewCommunicationsUserIdentity()
id := "7b7e1acd-a3e0-4533-8c1d-c1a4ca0b2e2b"
identity.SetId(&id)
requestBody.SetIdentity(identity)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
presenters, err := graphClient.Solutions().VirtualEvents().Townhalls().ByVirtualEventTownhallId("virtualEventTownhall-id").Presenters().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
VirtualEventPresenter virtualEventPresenter = new VirtualEventPresenter();
CommunicationsUserIdentity identity = new CommunicationsUserIdentity();
identity.setOdataType("#microsoft.graph.communicationsUserIdentity");
identity.setId("7b7e1acd-a3e0-4533-8c1d-c1a4ca0b2e2b");
virtualEventPresenter.setIdentity(identity);
VirtualEventPresenter result = graphClient.solutions().virtualEvents().townhalls().byVirtualEventTownhallId("{virtualEventTownhall-id}").presenters().post(virtualEventPresenter);
const options = {
authProvider,
};
const client = Client.init(options);
const virtualEventPresenter = {
identity: {
'@odata.type': '#microsoft.graph.communicationsUserIdentity',
id: '7b7e1acd-a3e0-4533-8c1d-c1a4ca0b2e2b'
}
};
await client.api('/solutions/virtualEvents/townhalls/502dadea-b5d8-44aa-a851-a0ac496a36bf@09a21d49-f0f3-4b3f-96b6-f381e9430742/presenters')
.version('beta')
.post(virtualEventPresenter);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\VirtualEventPresenter;
use Microsoft\Graph\Beta\Generated\Models\CommunicationsUserIdentity;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new VirtualEventPresenter();
$identity = new CommunicationsUserIdentity();
$identity->setOdataType('#microsoft.graph.communicationsUserIdentity');
$identity->setId('7b7e1acd-a3e0-4533-8c1d-c1a4ca0b2e2b');
$requestBody->setIdentity($identity);
$result = $graphServiceClient->solutions()->virtualEvents()->townhalls()->byVirtualEventTownhallId('virtualEventTownhall-id')->presenters()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Bookings
$params = @{
identity = @{
"@odata.type" = "#microsoft.graph.communicationsUserIdentity"
id = "7b7e1acd-a3e0-4533-8c1d-c1a4ca0b2e2b"
}
}
New-MgBetaVirtualEventTownhallPresenter -VirtualEventTownhallId $virtualEventTownhallId -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.virtual_event_presenter import VirtualEventPresenter
from msgraph_beta.generated.models.communications_user_identity import CommunicationsUserIdentity
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = VirtualEventPresenter(
identity = CommunicationsUserIdentity(
odata_type = "#microsoft.graph.communicationsUserIdentity",
id = "7b7e1acd-a3e0-4533-8c1d-c1a4ca0b2e2b",
),
)
result = await graph_client.solutions.virtual_events.townhalls.by_virtual_event_townhall_id('virtualEventTownhall-id').presenters.post(request_body)
応答
次の例は応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 201 Created
Content-Type: application/json
{
"id": "7b7e1acd-a3e0-4533-8c1d-c1a4ca0b2e2b",
"email": "kenneth.brown@contoso.com",
"identity": {
"@odata.type": "#microsoft.graph.communicationsUserIdentity",
"id": "7b7e1acd-a3e0-4533-8c1d-c1a4ca0b2e2b",
"displayName": "Kennth Brown",
"tenantId": "77229959-e479-4a73-b6e0-ddac27be315c"
},
"presenterDetails": null
}
例 2: テナント外の発表者を作成する
次の例は、 virtualEventTownhall で発表者としてゲスト ユーザーを作成する方法を示しています。
要求
次の例は要求を示しています。
POST https://graph.microsoft.com/beta/solutions/virtualEvents/townhalls/502dadea-b5d8-44aa-a851-a0ac496a36bf@09a21d49-f0f3-4b3f-96b6-f381e9430742/presenters
Content-Type: application/json
{
"identity": {
"@odata.type": "#microsoft.graph.communicationsGuestIdentity",
"displayName": "Guest Speaker",
"email": "guest.speaker@fabrikam.com"
}
}
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models;
var requestBody = new VirtualEventPresenter
{
Identity = new CommunicationsGuestIdentity
{
OdataType = "#microsoft.graph.communicationsGuestIdentity",
DisplayName = "Guest Speaker",
Email = "guest.speaker@fabrikam.com",
},
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Solutions.VirtualEvents.Townhalls["{virtualEventTownhall-id}"].Presenters.PostAsync(requestBody);
// Code snippets are only available for the latest major version. Current major version is $v0.*
// Dependencies
import (
"context"
msgraphsdk "github.com/microsoftgraph/msgraph-beta-sdk-go"
graphmodels "github.com/microsoftgraph/msgraph-beta-sdk-go/models"
//other-imports
)
requestBody := graphmodels.NewVirtualEventPresenter()
identity := graphmodels.NewCommunicationsGuestIdentity()
displayName := "Guest Speaker"
identity.SetDisplayName(&displayName)
email := "guest.speaker@fabrikam.com"
identity.SetEmail(&email)
requestBody.SetIdentity(identity)
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=go
presenters, err := graphClient.Solutions().VirtualEvents().Townhalls().ByVirtualEventTownhallId("virtualEventTownhall-id").Presenters().Post(context.Background(), requestBody, nil)
// Code snippets are only available for the latest version. Current version is 6.x
GraphServiceClient graphClient = new GraphServiceClient(requestAdapter);
VirtualEventPresenter virtualEventPresenter = new VirtualEventPresenter();
CommunicationsGuestIdentity identity = new CommunicationsGuestIdentity();
identity.setOdataType("#microsoft.graph.communicationsGuestIdentity");
identity.setDisplayName("Guest Speaker");
identity.setEmail("guest.speaker@fabrikam.com");
virtualEventPresenter.setIdentity(identity);
VirtualEventPresenter result = graphClient.solutions().virtualEvents().townhalls().byVirtualEventTownhallId("{virtualEventTownhall-id}").presenters().post(virtualEventPresenter);
const options = {
authProvider,
};
const client = Client.init(options);
const virtualEventPresenter = {
identity: {
'@odata.type': '#microsoft.graph.communicationsGuestIdentity',
displayName: 'Guest Speaker',
email: 'guest.speaker@fabrikam.com'
}
};
await client.api('/solutions/virtualEvents/townhalls/502dadea-b5d8-44aa-a851-a0ac496a36bf@09a21d49-f0f3-4b3f-96b6-f381e9430742/presenters')
.version('beta')
.post(virtualEventPresenter);
<?php
use Microsoft\Graph\Beta\GraphServiceClient;
use Microsoft\Graph\Beta\Generated\Models\VirtualEventPresenter;
use Microsoft\Graph\Beta\Generated\Models\CommunicationsGuestIdentity;
$graphServiceClient = new GraphServiceClient($tokenRequestContext, $scopes);
$requestBody = new VirtualEventPresenter();
$identity = new CommunicationsGuestIdentity();
$identity->setOdataType('#microsoft.graph.communicationsGuestIdentity');
$identity->setDisplayName('Guest Speaker');
$identity->setEmail('guest.speaker@fabrikam.com');
$requestBody->setIdentity($identity);
$result = $graphServiceClient->solutions()->virtualEvents()->townhalls()->byVirtualEventTownhallId('virtualEventTownhall-id')->presenters()->post($requestBody)->wait();
Import-Module Microsoft.Graph.Beta.Bookings
$params = @{
identity = @{
"@odata.type" = "#microsoft.graph.communicationsGuestIdentity"
displayName = "Guest Speaker"
email = "guest.speaker@fabrikam.com"
}
}
New-MgBetaVirtualEventTownhallPresenter -VirtualEventTownhallId $virtualEventTownhallId -BodyParameter $params
# Code snippets are only available for the latest version. Current version is 1.x
from msgraph_beta import GraphServiceClient
from msgraph_beta.generated.models.virtual_event_presenter import VirtualEventPresenter
from msgraph_beta.generated.models.communications_guest_identity import CommunicationsGuestIdentity
# To initialize your graph_client, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=python
request_body = VirtualEventPresenter(
identity = CommunicationsGuestIdentity(
odata_type = "#microsoft.graph.communicationsGuestIdentity",
display_name = "Guest Speaker",
email = "guest.speaker@fabrikam.com",
),
)
result = await graph_client.solutions.virtual_events.townhalls.by_virtual_event_townhall_id('virtualEventTownhall-id').presenters.post(request_body)
応答
次の例は応答を示しています。
注: ここに示す応答オブジェクトは、読みやすさのために短縮されている場合があります。
HTTP/1.1 201 Created
Content-Type: application/json
{
"id": "184975c0-4096-4a02-b251-c48546691c42",
"email": "guest.speaker@fabrikam.com",
"presenterDetails": null,
"identity": {
"@odata.type": "#microsoft.graph.communicationsGuestIdentity",
"id": "184975c0-4096-4a02-b251-c48546691c42",
"displayName": "Guest Speaker",
"email": "guest.speaker@fabrikam.com"
}
}