# Capture Call UUID

> Perform Capture Call UUID through Plivo.

Source: [https://genhealth.ai/docs/workflows/integrations/plivo/plivo_capture_call_uuid](https://genhealth.ai/docs/workflows/integrations/plivo/plivo_capture_call_uuid)

Integration: [Plivo](https://genhealth.ai/docs/workflows/integrations/plivo.md)

- Handler: `plivo_capture_call_uuid`

- Connection type: `plivo`

## Inputs

- `to_number` — To Number (expression, required)
  Required literal value or workflow expression.
- `from_number` — From Number (text)
  Optional text value.
- `timeout_seconds` — Timeout Seconds (text)
  Optional text value.

## Outputs

- `success` — Success
- `call_uuid` — Call Uuid
- `call_status` — Call 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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "success": {},
    "call_uuid": {},
    "call_status": {}
  },
  "additionalProperties": true
}
```
