Member Junction
    Preparing search index...

    The identity-provisioning seam — provisions a tenant mailbox/calendar (or telephony) identity for an agent on a provider. This is a documented seam, not a built integration: the schema (AIBridgeAgentIdentity) already holds the result, so all this interface does is define the shape production wires to Microsoft Graph admin / Google Workspace Admin SDK / a telephony carrier API.

    Kept deliberately thin (one method) — over-building here is explicitly out of scope; the value is the clean boundary + the TODO marking where the real admin APIs bind.

    interface IAgentIdentityProvisioner {
        Provision(
            request: AgentIdentityProvisionRequest,
        ): Promise<AgentIdentityProvisionResult>;
    }

    Implemented by

    Index

    Methods

    Methods