Skip to content

Check Module Status

GET
/api/v1/modules/install/{module_id}/status

Returns status, drift and component-level health for one module.

Authorizations

SessionAuth

Session ID for authenticated requests

Type
API Key (header: X-Session-ID)

Parameters

Path Parameters

module_id*
Type
string
Required

Responses

Module status

application/json
JSON
{
  
"success": true,
  
"data": {
  
  
"module_id": "blog",
  
  
"module_description": "Content publishing module for blog posts with optional engagement and analytics extensions.",
  
  
"runtime_scope": "flowless-core",
  
  
"module_version": "1.0.0",
  
  
"status": "installed",
  
  
"components": [
  
  
  
{
  
  
  
  
"component_id": "ext-comments",
  
  
  
  
"component_type": "extension",
  
  
  
  
"description": "Threaded comments and moderation-ready discussion data model.",
  
  
  
  
"expected_version": "1.0.0",
  
  
  
  
"installed_version": "1.0.0",
  
  
  
  
"installed": true,
  
  
  
  
"status": "installed"
  
  
  
}
  
  
]
  
}
}

Playground

Server
Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI