Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ HTTP/1.1 200 OK
Content-Type: application/json

{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#Edm.String",
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#Edm.String",
"value": "https://visit.teams.microsoft.com/webrtc-svc/api/route?tid=a796be92-&convId=19:meeting_=True"
}
```
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ The following example shows a request.
}
-->
```http
POST https://graph.microsoft.com/beta/solutions/virtualEvents/townhalls/a57082a9-7629-4f74-8da0-8d621aab4d2d@4aa05bcc-1cac-4a83-a9ae-0db84b88f4ba/setExternalEventInformation
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

{
Expand Down Expand Up @@ -124,7 +124,7 @@ The following example shows a request.
}
-->
```http
POST https://graph.microsoft.com/beta/solutions/virtualEvents/webinars/a57082a9-7629-4f74-8da0-8d621aab4d2d@4aa05bcc-1cac-4a83-a9ae-0db84b88f4ba/setExternalEventInformation
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

{
Expand Down
2 changes: 1 addition & 1 deletion api-reference/v1.0/api/virtualeventsroot-list-townhalls.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ If successful, this method returns a `200 OK` response code and a collection of
The following example shows a request.

```http
GET https://graph.microsoft.com/beta/solutions/virtualEvents/townhalls
GET https://graph.microsoft.com/v1.0/solutions/virtualEvents/townhalls
```

### Response
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ The following example shows a request.
}
-->
```msgraph-interactive
GET https://graph.microsoft.com/beta/solutions/virtualEvents/townhalls/getByUserIdAndRole(userId='b7ef013a-c73c-4ec7-8ccb-e56290f45f68', role='organizer')
GET https://graph.microsoft.com/v1.0/solutions/virtualEvents/townhalls/getByUserIdAndRole(userId='b7ef013a-c73c-4ec7-8ccb-e56290f45f68', role='organizer')
```

# [C#](#tab/csharp)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ The following example shows a request.
}
-->
```msgraph-interactive
GET https://graph.microsoft.com/beta/solutions/virtualEvents/townhalls/getByUserRole(role='organizer')
GET https://graph.microsoft.com/v1.0/solutions/virtualEvents/townhalls/getByUserRole(role='organizer')
```

# [C#](#tab/csharp)
Expand Down
Loading