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§
§§§§§§§
readonly answer _ method?: "GET" | "POST"§
readonly answer _ url?: stringURL to be invoked by Plivo once the call is answered. It should return the XML to handle the call once answered.
readonly from?: stringPlivo Number to send the SMS from
readonly media _ urls?: stringComma-separated list of media URLs of the files from your file server
readonly message?: stringMessage to send
readonly operation?: "send" | "make"Default: "send"
readonly resource?: "call" | "sms" | "mms"Default: "sms"
readonly to?: stringPhone number to send the message to
HTTP verb to be used when invoking the Answer URL Default: "POST"