> ## Documentation Index
> Fetch the complete documentation index at: https://docs.agentgate.mynewapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Enable Plugin

> Enable a verification plugin

# Enable Plugin

Enables a disabled verification plugin.

## Request

<ParamField path="id" type="string" required>
  The plugin ID to enable
</ParamField>

```bash theme={null}
curl -X POST https://agentgate.mynewapi.com/api/v1/verification/plugins/custom:security-scan/enable \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response

```json theme={null}
{
  "success": true,
  "data": {
    "enabled": true
  },
  "requestId": "req_abc123"
}
```

## Error Responses

### Plugin Not Found

```json theme={null}
{
  "success": false,
  "error": {
    "code": "NOT_FOUND",
    "message": "Plugin 'unknown-plugin' not found"
  }
}
```
