Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 908 Bytes

call-playprompt-csharp-snippets.md

File metadata and controls

35 lines (28 loc) · 908 Bytes
description
Automatically generated file. DO NOT MODIFY
// Code snippets are only available for the latest version. Current version is 5.x// DependenciesusingMicrosoft.Graph.Communications.Calls.Item.PlayPrompt;usingMicrosoft.Graph.Models;varrequestBody=newPlayPromptPostRequestBody{ClientContext="d45324c1-fcb5-430a-902c-f20af696537c",Prompts=newList<Prompt>{newMediaPrompt{OdataType="#microsoft.graph.mediaPrompt",MediaInfo=newMediaInfo{OdataType="#microsoft.graph.mediaInfo",Uri="https://cdn.contoso.com/beep.wav",ResourceId="1D6DE2D4-CD51-4309-8DAA-70768651088E",},},},};// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharpvarresult=awaitgraphClient.Communications.Calls["{call-id}"].PlayPrompt.PostAsync(requestBody);
close