Skip to content

Get Module Hub bootstrap status (Admin)

GET
/bridge-payment/admin/plugins/status

Checks whether Module Hub tables exist in the database (module_hub_registry, module_hub_events).

Success envelope: { data, user_context, meta }.

  • When ready: data.installed: true and data.tables lists table names.
  • When missing: data.installed: false and data.missing lists required tables.

Requires admin privileges (same as other /bridge-payment/admin/* routes).

Authorizations

SessionAuth

Session ID from Flowless authentication

TypeAPI Key (header: X-Session-ID)

Responses

Hub table status

application/json
JSON
{
"data": {
"installed": true,
"tables": [
"string"
],
"missing": [
"string"
]
},
"user_context": {
},
"meta": {
}
}

Playground

Server
Authorization

Samples

Powered by VitePress OpenAPI