Make Call
Perform Make Call through Plivo.
plivo_make_callwriteplivo
Inputs
- From Number
from_numbertextOptional text value.
- To Number
to_numberexpressionrequiredRequired literal value or workflow expression.
- Answer Url
answer_urltextrequiredRequired text value.
- Ring Url
ring_urltextOptional text value.
- Hangup Url
hangup_urltextOptional text value.
- Fallback Url
fallback_urltextOptional text value.
Outputs
successSuccesscall_uuidCall Uuidrequest_uuidRequest Uuidprovider_responseProvider Response
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"to_number",
"answer_url"
],
"properties": {
"ring_url": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"to_number": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"answer_url": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"hangup_url": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"from_number": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"fallback_url": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"success": {},
"call_uuid": {},
"request_uuid": {},
"provider_response": {}
},
"additionalProperties": true
}