List Recordings
Perform List Recordings through Plivo.
plivo_list_recordingsreadplivo
Inputs
- Call Uuid
call_uuidexpressionOptional literal value or workflow expression.
- Limit
limitnumberOptional numeric value.
Default:
20 - Offset
offsetnumberOptional numeric value.
Default:
0
Outputs
successSuccessrecordingsRecordingscountCount
Output schema completeness: best_effort_declared
Safety
- External effect
- read
- Confirmation recommended
- No
- Retry safe
- Yes
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"properties": {
"limit": {
"type": "number",
"default": 20,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"offset": {
"type": "number",
"default": 0,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"call_uuid": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"count": {},
"success": {},
"recordings": {}
},
"additionalProperties": true
}