# Stop Call Recording

> Perform Stop Call Recording through Plivo.

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

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

- Handler: `plivo_stop_call_recording`

- Connection type: `plivo`

## Inputs

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

## Outputs

- `success` — Success
- `call_uuid` — Call Uuid

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": [
    "call_uuid"
  ],
  "properties": {
    "call_uuid": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "recording_url": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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