Capture Call UUID
Perform Capture Call UUID through Plivo.
plivo_capture_call_uuidwriteplivo
Inputs
- To Number
to_numberexpressionrequiredRequired literal value or workflow expression.
- From Number
from_numbertextOptional text value.
- Timeout Seconds
timeout_secondstextOptional text value.
Outputs
successSuccesscall_uuidCall Uuidcall_statusCall Status
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"
],
"properties": {
"to_number": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"from_number": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"timeout_seconds": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"success": {},
"call_uuid": {},
"call_status": {}
},
"additionalProperties": true
}