v61

latestOpenAPI 3.1.0Apache 2.0raw.githubusercontent.com2026-08-018131,3812.6 MB
Custom Plugin Schemas

List Custom Plugin Schemas

Returns an array of custom plugins schemas associated with a control plane.

get/v2/control-planes/{controlPlaneId}/core-entities/plugin-schemas

Query parameters

page[size]integer
Example:10

The maximum number of items to include per page. The last page of a collection may include fewer items.

page[after]string
Example:ewogICJpZCI6ICJoZWxsbyB3b3JsZCIKfQ

Request the next page of data, starting with the item after this parameter.

Response

A paginated list response for a collection of custom plugin schemas.

Example response

{
  "items": [
    {
      "lua_schema": "return { name = \\\"myplugin\\\", fields = { { config = { type = \\\"record\\\", fields = { } } } } }",
      "name": "myplugin",
      "created_at": 1422386534,
      "updated_at": 1422412345
    }
  ]
}