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