Skip to documentation
Plivo integration

Capture Call UUID

Perform Capture Call UUID through Plivo.

View as Markdown
plivo_capture_call_uuid
writeplivo

Inputs

  • to_number
    expressionrequired
    To Number

    Required literal value or workflow expression.

  • from_number
    text
    From Number

    Optional text value.

  • timeout_seconds
    text
    Timeout Seconds

    Optional text value.

Outputs

  • successSuccess
  • call_uuidCall Uuid
  • call_statusCall Status

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