# Get Call

> Perform Get Call through Plivo.

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

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

- Handler: `plivo_get_call`

- Connection type: `plivo`

## Inputs

- `call_uuid` — Call Uuid (expression, required)
  Required literal value or workflow expression.

## Outputs

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

```json
{
  "type": "object",
  "required": [
    "call_uuid"
  ],
  "properties": {
    "call_uuid": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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