@jambonz/sdk
    Preparing search index...

    Interface SipRequestVerb

    interface SipRequestVerb {
        verb: "sip:request";
        id?: string;
        method: string;
        body?: string;
        headers?: Record<string, string>;
        actionHook?: ActionHook;
    }
    Index

    Properties

    verb: "sip:request"
    id?: string
    method: string

    SIP method (e.g. 'INFO', 'NOTIFY').

    body?: string

    Request body.

    headers?: Record<string, string>

    Custom SIP headers.

    actionHook?: ActionHook

    Webhook for the SIP response.