Version-check and update bounded receptionist business facts
const url = 'https://api.vocapable.com/v1/mobile/receptionist/numbers/example/studio';const options = { method: 'PATCH', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"expected_version":1,"business_facts":{"additionalProperty":"example"},"short_greeting":"example","escalation_preference":"standard","temporary_status":{"template":"service_update","message":"example","expires_at":"2026-04-15T12:00:00Z"}}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url https://api.vocapable.com/v1/mobile/receptionist/numbers/example/studio \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "expected_version": 1, "business_facts": { "additionalProperty": "example" }, "short_greeting": "example", "escalation_preference": "standard", "temporary_status": { "template": "service_update", "message": "example", "expires_at": "2026-04-15T12:00:00Z" } }'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Request Bodyrequired
Section titled “Request Bodyrequired”A complete, version-checked mobile Studio state replacement.
Requiring all editable state in the request makes an explicit removal distinguishable from a dropped field on a weak network. The native app starts from a live read and sends this exact object through the fresh browser-proof binding.
object
object
One bounded, expiring proposed public-status update.
The finite template is shown in the native preview and recorded in the audit trail. The message remains concise, cannot alter policy/tool wording, and must be reviewed in canonical intelligence before it can be spoken. Its expiry travels with the source evidence so reviewers do not mistake a temporary notice for durable business knowledge.
object
Responses
Section titled “Responses”Successful Response
One safe receptionist fact-draft projection for native operations views.
object
object
One bounded, expiring proposed public-status update.
The finite template is shown in the native preview and recorded in the audit trail. The message remains concise, cannot alter policy/tool wording, and must be reviewed in canonical intelligence before it can be spoken. Its expiry travels with the source evidence so reviewers do not mistake a temporary notice for durable business knowledge.
object
Example
{ "escalation_preference": "standard", "temporary_status": { "template": "service_update" }}Validation Error
object
object
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}