Skip to content

Latest commit

 

History

History
71 lines (56 loc) · 2.74 KB

File metadata and controls

71 lines (56 loc) · 2.74 KB
title adhocCall resource type
description Represents an ad hoc call, including PSTN calls, one-to-one calls, and group calls.
author kanchm
ms.date 10/16/2025
ms.localizationpriority medium
ms.subservice cloud-communications
doc_type resourcePageType
toc.title Ad hoc call

adhocCall resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents an ad hoc call, including PSTN calls, one-to-one calls, 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.
  • getAll variant 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
Get all recordings callRecording collection Get the callRecording objects from ad hoc call instances that a specific user initiates.
Get all transcripts callTranscript collection Get all callTranscript objects from ad hoc call instances that a specific user initiates.

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)"
}

Related content