CustomPlugins
Create a new CustomPlugin
Create a new CustomPlugin
post/v2/control-planes/{controlPlaneId}/core-entities/custom-plugins
Request body
Example request
{
"handler": "return { VERSION = '1.0,0', PRIORITY = 500, access = function(self, config) kong.service.request.set_header(config.name, config.value) end }",
"id": "868346aa-1105-4b77-8346-aa1105fb77c4",
"name": "set-header",
"schema": "return { name = 'set-header', fields = { { protocols = require('kong.db.schema.typedefs').protocols_http }, { config = { type = 'record', fields = { { name = { description = 'The name of the header to set.', type = 'string', required = true } }, { value = { description = 'The value for the header.', type = 'string', required = true } } } } } } }"
}Response
Successfully created CustomPlugin
Example response
{
"handler": "return { VERSION = '1.0,0', PRIORITY = 500, access = function(self, config) kong.service.request.set_header(config.name, config.value) end }",
"id": "868346aa-1105-4b77-8346-aa1105fb77c4",
"name": "set-header",
"schema": "return { name = 'set-header', fields = { { protocols = require('kong.db.schema.typedefs').protocols_http }, { config = { type = 'record', fields = { { name = { description = 'The name of the header to set.', type = 'string', required = true } }, { value = { description = 'The value for the header.', type = 'string', required = true } } } } } } }"
}