| title | virtualEvent: setExternalEventInformation |
|---|---|
| description | Link external event information to a town hall or webinar event by setting an externalEventId. |
| author | halleclottey-msft |
| ms.localizationpriority | medium |
| ms.subservice | cloud-communications |
| doc_type | apiPageType |
| ms.date | 11/22/2024 |
Namespace: microsoft.graph
Link external event information to a virtualEventTownhall or virtualEventWebinar by setting an externalEventId.
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.
[!INCLUDE permissions-table]
To link external town hall event information to a town hall event:
POST /solutions/virtualEvents/townhalls/{id}/setExternalEventInformationTo link external webinar event information to a webinar event:
POST /solutions/virtualEvents/webinars/{id}/setExternalEventInformation| Name | Description |
|---|---|
| Authorization | Bearer {token}. Required. Learn more about authentication and authorization. |
In the request body, supply a JSON representation of the externalEventId property of the virtualEventExternalInformation object.
You can specify the following property when you create the virtualEventExternalInformation.
| Property | Type | Description |
|---|---|---|
| externalEventId | String | The identifier for a virtualEventExternalInformation object. Optional. If set, the maximum supported length is 256 characters. |
If successful, this method returns a 204 No Content response code.
The following example shows how to link external town hall event information to a town hall event by setting an externalEventId.
The following example shows a request.
POST https://graph.microsoft.com/v1.0/solutions/virtualEvents/townhalls/a57082a9-7629-4f74-8da0-8d621aab4d2d@4aa05bcc-1cac-4a83-a9ae-0db84b88f4ba/setExternalEventInformation
Content-Type: application/json
{
"externalEventId": "myExternalEventId"
}[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
HTTP/1.1 204 No ContentThe following example shows how to link external webinar event information to a webinar event by setting an externalEventId.
The following example shows a request.
POST https://graph.microsoft.com/v1.0/solutions/virtualEvents/webinars/a57082a9-7629-4f74-8da0-8d621aab4d2d@4aa05bcc-1cac-4a83-a9ae-0db84b88f4ba/setExternalEventInformation
Content-Type: application/json
{
"externalEventId": "myExternalEventId"
}[!INCLUDE sample-code] [!INCLUDE sdk-documentation]
The following example shows the response.
HTTP/1.1 204 No Content