@jambonz/sdk
    Preparing search index...

    Interface ListCallsFilter

    interface ListCallsFilter {
        direction?: "inbound" | "outbound";
        from?: string;
        to?: string;
        callStatus?:
            | "completed"
            | "no-answer"
            | "trying"
            | "ringing"
            | "early-media"
            | "in-progress"
            | "failed"
            | "busy"
            | "queued";
    }
    Index

    Properties

    direction?: "inbound" | "outbound"

    Filter by call direction.

    from?: string

    Filter by calling number.

    to?: string

    Filter by called number.

    callStatus?:
        | "completed"
        | "no-answer"
        | "trying"
        | "ringing"
        | "early-media"
        | "in-progress"
        | "failed"
        | "busy"
        | "queued"

    Filter by call status.