Member Junction
    Preparing search index...
    • Pure parse of a Teams meetup-join URL into the Graph create-call meeting coordinates. The Teams join link embeds the thread id in its path (URL-encoded) and the organizer/tenant in the context query param (URL-encoded JSON), e.g. https://teams.microsoft.com/l/meetup-join/19%3Ameeting_X%40thread.v2/0?context=%7B%22Tid%22%3A%22…%22%2C%22Oid%22%3A%22…%22%7D.

      Decodes the thread id and (best-effort) the Tid/Oid from context. Returns null when the URL carries no recognizable thread id, so the caller can fall back to an explicitly-supplied ThreadId. Never throws on a malformed context blob — the meeting can still be joined by thread id alone.

      Parameters

      • joinUrl: string

        The Teams meeting join URL.

      Returns TeamsMeetingCoordinates

      The parsed coordinates, or null when no thread id can be extracted.