GET
/
v2
/
workspaces
/
{workspace_id}
/
deriver
/
status
JavaScript
import Honcho from '@honcho-ai/core';

const client = new Honcho({
  apiKey: 'My API Key',
});

const deriverStatus = await client.workspaces.deriverStatus('workspace_id');

console.log(deriverStatus.completed_work_units);
{
  "total_work_units": 123,
  "completed_work_units": 123,
  "in_progress_work_units": 123,
  "pending_work_units": 123,
  "sessions": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspace_id
string
required

ID of the workspace

Query Parameters

observer_id
string | null

Optional observer ID to filter by

sender_id
string | null

Optional sender ID to filter by

session_id
string | null

Optional session ID to filter by

Response

200
application/json

Successful Response

The response is of type object.