{ "operationId": "updatePlugin", "method": "POST", "path": "/api/v1/plugins/update", "summary": "Update a plugin", "description": "", "tags": [ "Plugins" ], "parameters": [], "requestBody": { "contentType": "application/json", "schema": { "oneOf": [ { "type": "object", "properties": { "npmName": { "type": "string", "example": "peertube-plugin-auth-ldap" } }, "required": [ "npmName" ], "additionalProperties": false }, { "type": "object", "properties": { "path": { "type": "string" } }, "required": [ "path" ], "additionalProperties": false } ] }, "example": {} }, "responses": { "204": { "description": "successful operation", "examples": {} }, "400": { "description": "should have either `npmName` or `path` set", "examples": {} }, "404": { "description": "existing plugin not found", "examples": {} } } }