Skip to documentation
Plivo integration

Get Call

Perform Get Call through Plivo.

View as Markdown
plivo_get_call
readplivo

Inputs

  • call_uuid
    expressionrequired
    Call Uuid

    Required literal value or workflow expression.

Outputs

  • successSuccess
  • callCall
  • call_uuidCall Uuid
  • call_statusCall Status

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",
  "required": [
    "call_uuid"
  ],
  "properties": {
    "call_uuid": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
Output schema
{
  "type": "object",
  "properties": {
    "call": {},
    "success": {},
    "call_uuid": {},
    "call_status": {}
  },
  "additionalProperties": true
}
View all Plivo actions