@jambonz/sdk
    Preparing search index...

    Interface SipReferVerb

    interface SipReferVerb {
        verb: "sip:refer";
        id?: string;
        referTo: string;
        referredBy?: string;
        referredByDisplayName?: string;
        headers?: Record<string, string>;
        actionHook?: ActionHook;
        eventHook?: ActionHook;
    }
    Index

    Properties

    verb: "sip:refer"
    id?: string
    referTo: string

    SIP URI or phone number to transfer to.

    referredBy?: string

    Referred-By header value.

    referredByDisplayName?: string

    Display name for Referred-By.

    headers?: Record<string, string>

    Custom SIP headers.

    actionHook?: ActionHook

    Webhook when REFER completes.

    eventHook?: ActionHook

    Webhook for NOTIFY progress events.