Read the native Owner Command Center workspace overview
GET
/v1/mobile/workspace/overview
const url = 'https://api.vocapable.com/v1/mobile/workspace/overview';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.vocapable.com/v1/mobile/workspace/overview \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
MobileWorkspaceOverview
object
workspace
required
MobileWorkspaceIdentity
The active workspace label and role; no user account directory fields.
object
membership_id
required
Membership Id
string
tenant_id
required
Tenant Id
string
label
required
Label
string
role
required
Role
string
receptionist
required
MobileWorkspaceReceptionistHealth
object
state
required
State
string
label
required
Label
string
detail
required
Detail
string
open_task_count
required
Open Task Count
integer
production_ready
required
Production Ready
boolean
subscription
Any of:
MobileWorkspaceSubscriptionPreview
The compact billing/capacity headline allowed on the Workspace Hub.
object
null
generated_at
required
Generated At
string format: date-time
Example
{ "workspace": { "role": "admin" }, "receptionist": { "state": "healthy" }, "subscription": { "status": "trialing", "payment_attention": "none" }}