Member Junction
    Preparing search index...

    A real IGraphCallsLike over the Microsoft Graph cloud-communications REST API (@microsoft/microsoft-graph-client).

    • CreateCallPOST /communications/calls with an app-hosted-media join-by-URL body; reads the created call id + the bot participant id from the response.
    • DeleteCallDELETE /communications/calls/{id} (the bot's call-leg hangup).
    • GetParticipantsGET /communications/calls/{id}/participants; maps each to GraphCallParticipant.
    • PostChatMessagePOST /chats/{threadId}/messages against the meeting thread.
    • MuteParticipantPOST /communications/calls/{id}/participants/{pid}/mute.
    • OnParticipantsUpdated/OnCallEnded → arrive over the Graph change-notification webhook (the MJAPI ingress), not a client subscription; this REST client retains the handlers so the ingress can drive them via DriveParticipantsUpdated / DriveCallEnded.

    The constructed Graph client is built once on first use and reused for the life of the instance.

    Implements

    Index

    Constructors

    Methods

    • Drives the retained callEnded handler for a call from a Graph change notification (called by the MJAPI ingress).

      Parameters

      • callId: string

      Returns void