# Trigger AI Agent Flow

> Perform Trigger AI Agent Flow through Plivo.

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

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

- Handler: `plivo_trigger_ai_agent_flow`

- Connection type: `plivo`

## Inputs

- `flow_url` — Flow Url (text)
  Optional text value.
- `payload` — Payload (json)
  Optional JSON value.

## Outputs

- `success` — Success
- `flow_run_id` — Flow Run Id
- `provider_response` — Provider Response

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",
  "properties": {
    "payload": {
      "description": "Optional JSON value.",
      "x-workflow-field-type": "json"
    },
    "flow_url": {
      "type": "string",
      "description": "Optional text value.",
      "x-workflow-field-type": "text"
    }
  },
  "additionalProperties": false
}
```

### Output schema

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