Join our community of builders on

Telegram!Telegram

Get plugin by ID

GET
/api/v1/plugins/{plugin_id}
AuthorizationBearer <token>

In: header

Path Parameters

plugin_idstring

The unique identifier of the plugin

Response Body

curl -X GET "https://loading/api/v1/plugins/string"
{
  "data": {
    "allow_get_invocation": false,
    "config": {
      "featureFlag": true
    },
    "emit_logs": false,
    "emit_traces": false,
    "forward_logs": false,
    "id": "my-plugin",
    "path": "plugins/my-plugin.ts",
    "raw_response": false,
    "timeout": 30
  },
  "error": null,
  "success": true
}
{
  "data": null,
  "error": "Unauthorized",
  "success": false
}
{
  "data": null,
  "error": "Plugin with id my-plugin not found",
  "success": false
}
{
  "data": null,
  "error": "Too Many Requests",
  "success": false
}
{
  "data": null,
  "error": "Internal Server Error",
  "success": false
}