Skip to content

Commit d794b21

Browse files
authored
Merge pull request #2261 from microsoftgraph/WeeklyApiRefresh/202308230950
[v2] Weekly OpenApiDocs Refresh
2 parents a14a82f + d293005 commit d794b21

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+116239
-114577
lines changed

openApiDocs/beta/Applications.yml

+47-72
Large diffs are not rendered by default.

openApiDocs/beta/Bookings.yml

+85-418
Large diffs are not rendered by default.

openApiDocs/beta/CloudCommunications.yml

+231-4
Original file line numberDiff line numberDiff line change
@@ -3392,10 +3392,10 @@ paths:
33923392
tags:
33933393
- communications.Actions
33943394
summary: Invoke action invite
3395-
description: 'Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.'
3395+
description: 'Invite participants to the active call. For more information about how to handle operations, see commsOperation.'
33963396
externalDocs:
33973397
description: Find more info here
3398-
url: https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0
3398+
url: https://learn.microsoft.com/graph/api/participant-invite?view=graph-rest-1.0
33993399
operationId: communication.call.participant_invite
34003400
parameters:
34013401
- name: call-id
@@ -5214,6 +5214,12 @@ paths:
52145214
- content desc
52155215
- createdDateTime
52165216
- createdDateTime desc
5217+
- meetingId
5218+
- meetingId desc
5219+
- meetingOrganizerId
5220+
- meetingOrganizerId desc
5221+
- recordingContentUrl
5222+
- recordingContentUrl desc
52175223
type: string
52185224
- name: $select
52195225
in: query
@@ -5228,6 +5234,9 @@ paths:
52285234
- id
52295235
- content
52305236
- createdDateTime
5237+
- meetingId
5238+
- meetingOrganizerId
5239+
- recordingContentUrl
52315240
type: string
52325241
- name: $expand
52335242
in: query
@@ -5321,6 +5330,9 @@ paths:
53215330
- id
53225331
- content
53235332
- createdDateTime
5333+
- meetingId
5334+
- meetingOrganizerId
5335+
- recordingContentUrl
53245336
type: string
53255337
- name: $expand
53265338
in: query
@@ -6225,8 +6237,14 @@ paths:
62256237
- content desc
62266238
- createdDateTime
62276239
- createdDateTime desc
6240+
- meetingId
6241+
- meetingId desc
6242+
- meetingOrganizerId
6243+
- meetingOrganizerId desc
62286244
- metadataContent
62296245
- metadataContent desc
6246+
- transcriptContentUrl
6247+
- transcriptContentUrl desc
62306248
type: string
62316249
- name: $select
62326250
in: query
@@ -6241,7 +6259,10 @@ paths:
62416259
- id
62426260
- content
62436261
- createdDateTime
6262+
- meetingId
6263+
- meetingOrganizerId
62446264
- metadataContent
6265+
- transcriptContentUrl
62456266
type: string
62466267
- name: $expand
62476268
in: query
@@ -6335,7 +6356,10 @@ paths:
63356356
- id
63366357
- content
63376358
- createdDateTime
6359+
- meetingId
6360+
- meetingOrganizerId
63386361
- metadataContent
6362+
- transcriptContentUrl
63396363
type: string
63406364
- name: $expand
63416365
in: query
@@ -6671,6 +6695,161 @@ paths:
66716695
default:
66726696
$ref: '#/components/responses/error'
66736697
x-ms-docs-operation-type: action
6698+
/communications/onlineMeetings/microsoft.graph.getAllRecordings():
6699+
get:
6700+
tags:
6701+
- communications.Functions
6702+
summary: Invoke function getAllRecordings
6703+
operationId: communication.onlineMeeting_getAllRecording
6704+
parameters:
6705+
- $ref: '#/components/parameters/top'
6706+
- $ref: '#/components/parameters/skip'
6707+
- $ref: '#/components/parameters/search'
6708+
- $ref: '#/components/parameters/filter'
6709+
- $ref: '#/components/parameters/count'
6710+
- name: $select
6711+
in: query
6712+
description: Select properties to be returned
6713+
style: form
6714+
explode: false
6715+
schema:
6716+
uniqueItems: true
6717+
type: array
6718+
items:
6719+
enum:
6720+
- id
6721+
- content
6722+
- createdDateTime
6723+
- meetingId
6724+
- meetingOrganizerId
6725+
- recordingContentUrl
6726+
type: string
6727+
- name: $orderby
6728+
in: query
6729+
description: Order items by property values
6730+
style: form
6731+
explode: false
6732+
schema:
6733+
uniqueItems: true
6734+
type: array
6735+
items:
6736+
enum:
6737+
- id
6738+
- id desc
6739+
- content
6740+
- content desc
6741+
- createdDateTime
6742+
- createdDateTime desc
6743+
- meetingId
6744+
- meetingId desc
6745+
- meetingOrganizerId
6746+
- meetingOrganizerId desc
6747+
- recordingContentUrl
6748+
- recordingContentUrl desc
6749+
type: string
6750+
responses:
6751+
2XX:
6752+
description: Success
6753+
content:
6754+
application/json:
6755+
schema:
6756+
title: Collection of callRecording
6757+
type: object
6758+
properties:
6759+
value:
6760+
type: array
6761+
items:
6762+
$ref: '#/components/schemas/microsoft.graph.callRecording'
6763+
'@odata.nextLink':
6764+
type: string
6765+
nullable: true
6766+
additionalProperties:
6767+
type: object
6768+
default:
6769+
$ref: '#/components/responses/error'
6770+
x-ms-docs-operation-type: function
6771+
x-ms-pageable:
6772+
nextLinkName: '@odata.nextLink'
6773+
operationName: listMore
6774+
/communications/onlineMeetings/microsoft.graph.getAllTranscripts():
6775+
get:
6776+
tags:
6777+
- communications.Functions
6778+
summary: Invoke function getAllTranscripts
6779+
operationId: communication.onlineMeeting_getAllTranscript
6780+
parameters:
6781+
- $ref: '#/components/parameters/top'
6782+
- $ref: '#/components/parameters/skip'
6783+
- $ref: '#/components/parameters/search'
6784+
- $ref: '#/components/parameters/filter'
6785+
- $ref: '#/components/parameters/count'
6786+
- name: $select
6787+
in: query
6788+
description: Select properties to be returned
6789+
style: form
6790+
explode: false
6791+
schema:
6792+
uniqueItems: true
6793+
type: array
6794+
items:
6795+
enum:
6796+
- id
6797+
- content
6798+
- createdDateTime
6799+
- meetingId
6800+
- meetingOrganizerId
6801+
- metadataContent
6802+
- transcriptContentUrl
6803+
type: string
6804+
- name: $orderby
6805+
in: query
6806+
description: Order items by property values
6807+
style: form
6808+
explode: false
6809+
schema:
6810+
uniqueItems: true
6811+
type: array
6812+
items:
6813+
enum:
6814+
- id
6815+
- id desc
6816+
- content
6817+
- content desc
6818+
- createdDateTime
6819+
- createdDateTime desc
6820+
- meetingId
6821+
- meetingId desc
6822+
- meetingOrganizerId
6823+
- meetingOrganizerId desc
6824+
- metadataContent
6825+
- metadataContent desc
6826+
- transcriptContentUrl
6827+
- transcriptContentUrl desc
6828+
type: string
6829+
responses:
6830+
2XX:
6831+
description: Success
6832+
content:
6833+
application/json:
6834+
schema:
6835+
title: Collection of callTranscript
6836+
type: object
6837+
properties:
6838+
value:
6839+
type: array
6840+
items:
6841+
$ref: '#/components/schemas/microsoft.graph.callTranscript'
6842+
'@odata.nextLink':
6843+
type: string
6844+
nullable: true
6845+
additionalProperties:
6846+
type: object
6847+
default:
6848+
$ref: '#/components/responses/error'
6849+
x-ms-docs-operation-type: function
6850+
x-ms-pageable:
6851+
nextLinkName: '@odata.nextLink'
6852+
operationName: listMore
66746853
/communications/presences:
66756854
get:
66766855
tags:
@@ -8990,6 +9169,12 @@ paths:
89909169
- content desc
89919170
- createdDateTime
89929171
- createdDateTime desc
9172+
- meetingId
9173+
- meetingId desc
9174+
- meetingOrganizerId
9175+
- meetingOrganizerId desc
9176+
- recordingContentUrl
9177+
- recordingContentUrl desc
89939178
type: string
89949179
- name: $select
89959180
in: query
@@ -9004,6 +9189,9 @@ paths:
90049189
- id
90059190
- content
90069191
- createdDateTime
9192+
- meetingId
9193+
- meetingOrganizerId
9194+
- recordingContentUrl
90079195
type: string
90089196
- name: $expand
90099197
in: query
@@ -9113,6 +9301,9 @@ paths:
91139301
- id
91149302
- content
91159303
- createdDateTime
9304+
- meetingId
9305+
- meetingOrganizerId
9306+
- recordingContentUrl
91169307
type: string
91179308
- name: $expand
91189309
in: query
@@ -10185,8 +10376,14 @@ paths:
1018510376
- content desc
1018610377
- createdDateTime
1018710378
- createdDateTime desc
10379+
- meetingId
10380+
- meetingId desc
10381+
- meetingOrganizerId
10382+
- meetingOrganizerId desc
1018810383
- metadataContent
1018910384
- metadataContent desc
10385+
- transcriptContentUrl
10386+
- transcriptContentUrl desc
1019010387
type: string
1019110388
- name: $select
1019210389
in: query
@@ -10201,7 +10398,10 @@ paths:
1020110398
- id
1020210399
- content
1020310400
- createdDateTime
10401+
- meetingId
10402+
- meetingOrganizerId
1020410403
- metadataContent
10404+
- transcriptContentUrl
1020510405
type: string
1020610406
- name: $expand
1020710407
in: query
@@ -10311,7 +10511,10 @@ paths:
1031110511
- id
1031210512
- content
1031310513
- createdDateTime
10514+
- meetingId
10515+
- meetingOrganizerId
1031410516
- metadataContent
10517+
- transcriptContentUrl
1031510518
type: string
1031610519
- name: $expand
1031710520
in: query
@@ -11819,6 +12022,18 @@ components:
1181912022
description: 'Date and time at which the recording was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
1182012023
format: date-time
1182112024
nullable: true
12025+
meetingId:
12026+
type: string
12027+
description: The unique identifier of the onlineMeeting related to this recording. Read-only.
12028+
nullable: true
12029+
meetingOrganizerId:
12030+
type: string
12031+
description: The unique identifier of the organizer of the onlineMeeting related to this recording. Read-only.
12032+
nullable: true
12033+
recordingContentUrl:
12034+
type: string
12035+
description: The URL which can be used to access the content of the recording. Read-only.
12036+
nullable: true
1182212037
additionalProperties:
1182312038
type: object
1182412039
microsoft.graph.meetingRegistration:
@@ -11924,11 +12139,23 @@ components:
1192412139
description: 'Date and time at which the transcript was created. The DateTimeOffset type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only.'
1192512140
format: date-time
1192612141
nullable: true
12142+
meetingId:
12143+
type: string
12144+
description: The unique identifier of the online meeting related to this transcript. Read-only.
12145+
nullable: true
12146+
meetingOrganizerId:
12147+
type: string
12148+
description: The unique identifier of the organizer of the onlineMeeting related to this transcript. Read-only.
12149+
nullable: true
1192712150
metadataContent:
1192812151
type: string
1192912152
description: The time-aligned metadata of the utterances in the transcript. Read-only.
1193012153
format: base64url
1193112154
nullable: true
12155+
transcriptContentUrl:
12156+
type: string
12157+
description: The URL which can be used to access the content of the transcript. Read-only.
12158+
nullable: true
1193212159
additionalProperties:
1193312160
type: object
1193412161
microsoft.graph.chatInfo:
@@ -12655,11 +12882,11 @@ components:
1265512882
properties:
1265612883
displayName:
1265712884
type: string
12658-
description: 'The display name of the identity. Note that this might not always be available or up to date. For example, if a user changes their display name, the API might show the new value in a future response, but the items associated with the user won''t show up as having changed when using delta.'
12885+
description: The display name of the identity. This property is read-only.
1265912886
nullable: true
1266012887
id:
1266112888
type: string
12662-
description: Unique identifier for the identity.
12889+
description: The identifier of the identity. This property is read-only.
1266312890
nullable: true
1266412891
additionalProperties:
1266512892
type: object

0 commit comments

Comments
 (0)