Get-MSTeamsCallRecord
- 21 Aug 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Get-MSTeamsCallRecord
- Updated on 21 Aug 2024
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Return a specific call record details directly from MS Azure tenant.
Syntax
Get-MSTeamsCallRecord
-CallRecordID <String>
-TenantName <String>
-AuthToken <String>
-TextOutput
-BetaCallRecord
Examples
Example 1
Get-MSTeamsCallRecord -CallRecordID ed672235-5417-40ce-8425-12b8b702a505 -AuthToken $AuthToken
Returns the given MS Teams call record using a previously-obtained authtoken
Example 2
Get-MSTeamsCallRecord -CallRecordID ed672235-5417-40ce-8425-12b8b702a505 -AuthToken $AuthToken -TextOutput | Out-File Call.json
Returns the given MS Teams call record using a previously-obtained authtoken and saves the results to a .JSON file.
Parameters
-CallRecordID <String>
The MS call record ID
Parameter | Value |
---|---|
Required | true |
Position | 1 |
Required | true |
Default Value | None |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | false |
-TenantName <String>
The name of the Nectar DXP tenant. Used in multi-tenant configurations.
Parameter | Value |
---|---|
Required | false |
Position | 2 |
Required | false |
Default Value | None |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | false |
-AuthToken <String>
The authorization token used for this request. Normally obtained via Get-MSGraphAccessToken
Parameter | Value |
---|---|
Required | false |
Position | 3 |
Required | false |
Default Value | None |
Accept pipeline input? | true (ByPropertyName) |
Accept wildcard characters? | false |
-TextOutput <SwitchParameter>
Parameter | Value |
---|---|
Required | false |
Position | named |
Required | false |
Default Value | False |
Accept pipeline input? | false |
Accept wildcard characters? | false |
-BetaCallRecord <SwitchParameter>
Parameter | Value |
---|---|
Required | false |
Position | named |
Required | false |
Default Value | False |
Accept pipeline input? | false |
Accept wildcard characters? | false |
Was this article helpful?