Interface PlivoNodeParameters

Source
interface PlivoNodeParameters {
    answer_method?: "GET" | "POST";
    answer_url?: string;
    from?: string;
    media_urls?: string;
    message?: string;
    operation?: "send" | "make";
    resource?: "call" | "sms" | "mms";
    to?: string;
}

Properties§

Source§

readonly answer_method?: "GET" | "POST"

HTTP verb to be used when invoking the Answer URL Default: "POST"

Source§

readonly answer_url?: string

URL to be invoked by Plivo once the call is answered. It should return the XML to handle the call once answered.

Source§

readonly from?: string

Plivo Number to send the SMS from

Source§

readonly media_urls?: string

Comma-separated list of media URLs of the files from your file server

Source§

readonly message?: string

Message to send

Source§

readonly operation?: "send" | "make"

Default: "send"

Source§

readonly resource?: "call" | "sms" | "mms"

Default: "sms"

Source§

readonly to?: string

Phone number to send the message to