curl --request POST \
--url https://agentgate.mynewapi.com/api/v1/verification/plugins/{id}/enable \
--header 'Authorization: Bearer <token>'Enable a verification plugin
curl --request POST \
--url https://agentgate.mynewapi.com/api/v1/verification/plugins/{id}/enable \
--header 'Authorization: Bearer <token>'curl -X POST https://agentgate.mynewapi.com/api/v1/verification/plugins/custom:security-scan/enable \
-H "Authorization: Bearer YOUR_API_KEY"
{
"success": true,
"data": {
"enabled": true
},
"requestId": "req_abc123"
}
{
"success": false,
"error": {
"code": "NOT_FOUND",
"message": "Plugin 'unknown-plugin' not found"
}
}