Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: microsoft.graph
Important
APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Contains information about an ad hoc call, including Public Switched Telephone Network (PSTN), 1:1, and group calls.
Note
For ad hoc calls:
- To obtain the call ID while the call is still ongoing, have the app get called through App-hosted/service-hosted Calls and use the
callChainId. getAllvariant is available to get all ad hoc calls for a user.- Enumeration of artifacts for a particular call isn't available.
Methods
| Method | Return Type | Description |
|---|---|---|
| getAllRecordings | callRecording collection | Get all recordings from adhoc call instances initiated by a specific user. |
| getAllTranscripts | callTranscript collection | Get all transcripts from adhoc call instances initiated by a specific user. |
Properties
| Property | Type | Description |
|---|---|---|
| endDateTime | DateTime | The meeting end time in UTC. Required when an ad hoc call is ended. |
| id | String | The unique identifier for the call, including PSTN, 1:1, and group calls. Read-only. |
| startDateTime | DateTime | The meeting start time in UTC. Required when the call is started. |
Relationships
| Relationship | Type | Description |
|---|---|---|
| recordings | callRecording collection | The recordings of a call. Read-only. |
| transcripts | callTranscript collection | The transcripts of a call. Read-only. |
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.adhocCall",
"endDateTime": "DateTime (timestamp)",
"id": "String (identifier)",
"startDateTime": "DateTime (timestamp)"
}