Skip to content

Plivo

Node: plivo · Full type: n8n-nodes-base.plivo · Version: 1

Credentials

plivoApi (alias: @plivo)

CREDENTIAL @plivo = plivoApi "My Plivo"

Operations

Resource: call

make

Parameter Type Default Details
from string "" required
to string "" required
answer_method options "POST" required; GET, POST
answer_url string "" required

Resource: mms

send

Parameter Type Default Details
from string "" required
to string "" required
message string ""
media_urls string ""

Resource: sms

send

Parameter Type Default Details
from string "" required
to string "" required
message string "" required

Example

NODE "plivo" @plivo AS "Plivo" {
  resource: "call",
  operation: "send",
  from: {{ $json.from }},
  to: {{ $json.to }},
  message: {{ $json.message }}
}