Skip to main content
POST
https://agentgate.mynewapi.com
/
api
/
v1
/
verification
/
plugins
/
{id}
/
enable
Enable Plugin
curl --request POST \
  --url https://agentgate.mynewapi.com/api/v1/verification/plugins/{id}/enable \
  --header 'Authorization: Bearer <token>'

Enable Plugin

Enables a disabled verification plugin.

Request

id
string
required
The plugin ID to enable
curl -X POST https://agentgate.mynewapi.com/api/v1/verification/plugins/custom:security-scan/enable \
  -H "Authorization: Bearer YOUR_API_KEY"

Response

{
  "success": true,
  "data": {
    "enabled": true
  },
  "requestId": "req_abc123"
}

Error Responses

Plugin Not Found

{
  "success": false,
  "error": {
    "code": "NOT_FOUND",
    "message": "Plugin 'unknown-plugin' not found"
  }
}