Stop Call Recording
Perform Stop Call Recording through Plivo.
plivo_stop_call_recordingwriteplivo
Inputs
- Call Uuid
call_uuidexpressionrequiredRequired literal value or workflow expression.
- Recording Url
recording_urlexpressionOptional literal value or workflow expression.
Outputs
successSuccesscall_uuidCall Uuid
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": [
"call_uuid"
],
"properties": {
"call_uuid": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"recording_url": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"success": {},
"call_uuid": {}
},
"additionalProperties": true
}