Skip to main content
GET
/
api
/
v1
/
misc
/
capabilities
Get platform capabilities
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://blackbox.dasha.ai/api/v1/misc/capabilities', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "ivrVoiceRecognitionPossible": true
}

Response

Returns platform capabilities successfully

Platform capabilities available for the authenticated organization. Indicates which experimental or gated features the organization can access based on environment and feature flag configuration.

ivrVoiceRecognitionPossible
boolean
required

Indicates whether IVR voice recognition is available for the organization. When true, the organization can enable IVR voice recognition in agent voicemail handling configuration. Availability depends on both the deployment environment and the organization's feature flag status.