Start Call Recording
Perform Start Call Recording through Plivo.
plivo_start_call_recordingwriteplivo
Inputs
- Call Uuid
call_uuidexpressionrequiredRequired literal value or workflow expression.
- Time Limit
time_limitnumberOptional numeric value.
- File Format
file_formatselectOptional selected identifier or value.
Options: MP3 ("mp3"), WAV ("wav")
- Transcription Type
transcription_typetextOptional text value.
- Transcription Url
transcription_urltextOptional text value.
- Callback Url
callback_urltextOptional text value.
Outputs
successSuccessprovider_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": [
"call_uuid"
],
"properties": {
"call_uuid": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"time_limit": {
"type": "number",
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"file_format": {
"enum": [
"mp3",
"wav"
],
"type": "string",
"description": "Optional selected identifier or value.",
"x-workflow-field-type": "select"
},
"callback_url": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"transcription_url": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"transcription_type": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"success": {},
"provider_response": {}
},
"additionalProperties": true
}