Twilio
Node: twilio · Full type: n8n-nodes-base.twilio · Version: 1
Credentials
twilioApi (alias: @twilio)
CREDENTIAL @twilio = twilioApi "My Twilio"
Operations
Resource: call
make
| Parameter |
Type |
Default |
Details |
from |
string |
"" |
required |
to |
string |
"" |
required |
twiml |
boolean |
false |
|
message |
string |
"" |
required |
Resource: sms
send
| Parameter |
Type |
Default |
Details |
from |
string |
"" |
required |
to |
string |
"" |
required |
toWhatsapp |
boolean |
false |
|
message |
string |
"" |
required |
Common Parameters
| Parameter |
Type |
Default |
Details |
options |
collection |
{} |
keys: statusCallback |
Parameter Details
options children:
| Parameter |
Type |
Default |
Details |
statusCallback |
string |
"" |
|
Example
NODE "twilio" @twilio AS "Twilio" {
resource: "call",
operation: "send",
from: {{ $json.from }},
to: {{ $json.to }},
message: {{ $json.message }}
}