taikutaiku
User GuidePluginsAPI Reference
POST/plugin-bridge/request

Documentation-only operation for taiku:request messages sent from a plugin iframe to the host. See x-taiku-bridge-methods for the exhaustive method catalog.

Request Body

application/json

Virtual bridge request body.

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "/api/plugin-bridge/request" \  -H "Content-Type: application/json" \  -d '{    "type": "taiku:request",    "id": "string",    "pluginId": "string",    "method": "getSession"  }'
{
  "type": "taiku:response",
  "id": "string",
  "result": null,
  "error": "string"
}