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

Disable Plugin

Disables a verification plugin. Disabled plugins will not run during verification.

Request

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

Response

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

Error Responses

Plugin Not Found

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