This class of endpoints provide access to information that can be used for widgets in a website. These endpoints are not protected by the API access control.
Fetch minimal statistics about a process. You need to know the process ID.
curl http://127.0.0.1:8080/api/v3/widget/process/someid \ -H 'accept: application/json' \ -X GET
from 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)
This is not implemented in the GoClient.
Last updated 1 year ago
Fetch minimal statistics about a process, which is not protected by any auth.
ID of a process
OK
const response = await fetch('//api/v3/widget/process/{id}', { method: 'GET', headers: {}, }); const data = await response.json();
{}