Widget (Website)
Process
curl http://127.0.0.1:8080/api/v3/widget/process/someid \
-H 'accept: application/json' \
-X GETfrom core_client import Client
client = Client(
base_url="http://127.0.0.1:8080"
)
client.login()
core_widget_process = client.v3_widget_get_process(
id="test"
)
print(core_widget_process)Fetch minimal statistics about a process, which is not protected by any auth.
Path parameters
idstringRequired
ID of a process
Responses
200
OK
application/json
current_sessionsintegerOptional
total_sessionsintegerOptional
uptimeintegerOptional
404
Not Found
application/json
get
/api/v3/widget/process/{id}Last updated
Was this helpful?
