transcript
# support
c
how can I enable the transcriptPlan.enabled: true
v
To enable
transcriptPlan.enabled: true
in Vapi, you need to configure your assistant's
artifactPlan
with this setting. According to the [Vapi documentation](https://docs.vapi.ai/api-reference/calls/create), you can do this by including the following in your configuration:
Copy code
json
"artifactPlan": {
  "transcriptPlan": {
    "enabled": true,
    "assistantName": "assistantName",
    "userName": "userName"
  }
}
You can apply this configuration when creating a new assistant or update an existing one using a PATCH request to the Vapi API. Sources: - [Vapi API Reference Create Call](https://docs.vapi.ai/api-reference/calls/create) - [Vapi API Reference List Assistants](https://docs.vapi.ai/api-reference/assistants/list)
k
Go to your assistant’s configuration, set "enabled": true under the transcriptPlan section, and save the changes.
3 Views