-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25940 from microsoftgraph/main
Merge to publish.
- Loading branch information
Showing
391 changed files
with
5,401 additions
and
689 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
--- | ||
title: "call: startRecording" | ||
ms.date: 11/15/2024 | ||
description: "Start the recording of a call." | ||
author: "calvintang" | ||
ms.localizationpriority: medium | ||
ms.subservice: "cloud-communications" | ||
doc_type: apiPageType | ||
--- | ||
|
||
# call: startRecording | ||
|
||
Namespace: microsoft.graph | ||
|
||
[!INCLUDE [beta-disclaimer](../../includes/beta-disclaimer.md)] | ||
|
||
Start the recording of a call. | ||
|
||
[!INCLUDE [national-cloud-support](../../includes/global-us.md)] | ||
|
||
## Permissions | ||
|
||
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](/graph/permissions-overview#best-practices-for-using-microsoft-graph-permissions). For details about delegated and application permissions, see [Permission types](/graph/permissions-overview#permission-types). To learn more about these permissions, see the [permissions reference](/graph/permissions-reference). | ||
|
||
<!-- { "blockType": "permissions", "name": "call_startrecording" } --> | ||
[!INCLUDE [permissions-table](../includes/permissions/call-startrecording-permissions.md)] | ||
|
||
## HTTP request | ||
<!-- { "blockType": "ignored" } --> | ||
|
||
```http | ||
POST /communications/calls/{id}/microsoft.graph.StartRecording | ||
``` | ||
|
||
## Request headers | ||
|
||
| Name | Description | | ||
|:--------------|:--------------------------| | ||
|Authorization|Bearer {token}. Required. Learn more about [authentication and authorization](/graph/auth/auth-concepts).| | ||
| Content-type | application/json. Required. | | ||
|
||
## Request body | ||
|
||
Don't supply a request body for this method. | ||
|
||
## Response | ||
|
||
This method returns a `202 Accepted` response code and a [startRecordingOperation](../resources/startrecordingoperation.md) object created for this request. | ||
|
||
## Example | ||
|
||
The following example shows how to call this API. | ||
|
||
### Request | ||
|
||
The following example shows the request. | ||
|
||
<!-- { | ||
"blockType": "request", | ||
"name": "call-startRecording" | ||
}--> | ||
|
||
```http | ||
POST https://graph.microsoft.com/beta/communications/calls/02000980-58ea-4bf2-bb77-8ba548da56f7/microsoft.graph.StartRecording | ||
``` | ||
|
||
--- | ||
|
||
### Response | ||
|
||
The following example shows the response. | ||
|
||
> **Note:** The response object shown here might be shortened for readability. | ||
<!-- { | ||
"blockType": "response", | ||
"name": "call-startRecording", | ||
"truncated": true, | ||
"@odata.type": "microsoft.graph.startRecordingOperation" | ||
} --> | ||
|
||
```http | ||
HTTP/1.1 202 Accepted | ||
Location: https://graph.microsoft.com/beta/communications/calls/02000980-58ea-4bf2-bb77-8ba548da56f7/operations/2d7ab59c-f8bd-4911-8302-6d58ab60e338 | ||
{ | ||
"@odata.type": "#microsoft.graph.startRecordingOperation", | ||
"clientContext": "clientContext-value", | ||
"status": "running" | ||
} | ||
``` | ||
|
||
<!-- uuid: 8fcb5dbc-d5aa-4681-8e31-b001d5168d79 | ||
2024-11-12 14:57:30 UTC --> | ||
<!-- | ||
{ | ||
"type": "#page.annotation", | ||
"description": "call: startRecording", | ||
"keywords": "", | ||
"section": "documentation", | ||
"tocPath": "", | ||
"suppressions": [ | ||
] | ||
} | ||
--> |
Oops, something went wrong.