Record one privacy-safe customer portal funnel event
POST
/v1/workspace-telemetry
const url = 'https://api.vocapable.com/v1/workspace-telemetry';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"event":"job_selected","workflow":"receptionist","workforce_track":"availability","surface":"home","test_channel":"browser","blocker":"not_applicable","duration_bucket":"under_1_minute"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://api.vocapable.com/v1/workspace-telemetry \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "event": "job_selected", "workflow": "receptionist", "workforce_track": "availability", "surface": "home", "test_channel": "browser", "blocker": "not_applicable", "duration_bucket": "under_1_minute" }'Write only finite, non-identifying portal dimensions to structured monitoring.
This endpoint deliberately owns no database model, progression record, counter, or resource join. It is a best-effort operational signal; the browser never waits for it to decide whether a customer can keep setting up their workspace.
Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”Media typeapplication/json
PortalTelemetryEventRequest
One finite product-funnel event from the authenticated portal.
The event is intentionally not an audit trail. Authentication and normal per-key rate limiting still apply to the request, but neither the payload nor the monitoring event receives a caller, contact, helper, campaign, route URL, exception string, or raw elapsed time.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
PortalTelemetryReceipt
An intentionally content-free acknowledgement of a monitoring event.
object
recorded
required
Recorded
boolean
Examplegenerated
{ "recorded": true}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}