Skip to documentation
Plivo integration

List Recordings

Perform List Recordings through Plivo.

View as Markdown
plivo_list_recordings
readplivo

Inputs

  • call_uuid
    expression
    Call Uuid

    Optional literal value or workflow expression.

  • limit
    number
    Limit

    Optional numeric value.

    Default: 20

  • offset
    number
    Offset

    Optional numeric value.

    Default: 0

Outputs

  • successSuccess
  • recordingsRecordings
  • countCount

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
}
View all Plivo actions