Marcello
10/26/2025, 8:21 AMChiranjeet Mishra
10/26/2025, 8:21 AMVapi Support Bot
10/26/2025, 8:23 AManalysisPlan to ensure the summary is enabled and configured correctly:
json
{
"analysisPlan": {
"minMessagesThreshold": 1,
"summaryPlan": {
"enabled": true,
"messages": [
{
"role": "system",
"content": "Summarize this call transcript in 2-3 clear sentences."
},
{
"role": "user",
"content": "{{transcript}}"
}
]
}
}
}
After saving, test a new call and check if the summary appears in call.analysis. If the issue persists, contact Vapi support with your call ID for further help.
(Source: Vapi documentation)Marcello
10/26/2025, 3:10 PMMarcello
10/26/2025, 3:10 PMVapi Support Bot
10/26/2025, 3:12 PMbash
curl -X PATCH "https://api.vapi.ai/assistant/YOUR_ASSISTANT_ID" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"analysisPlan": {
"minMessagesThreshold": 1,
"summaryPlan": {
"enabled": true,
"messages": [
{ "role": "system", "content": "Summarize this call transcript in 2-3 clear sentences." },
{ "role": "user", "content": "{{transcript}}" }
]
}
}
}'
Replace YOUR_ASSISTANT_ID and YOUR_API_KEY with your actual values. After running, test a new call to confirm the summary appears in call.analysis.summary.
(According to the documentation I have found)
Source:
- [Call analysis documentation](https://docs.vapi.ai/call-analysis)Marcello
10/26/2025, 5:39 PMMarcello
10/26/2025, 5:54 PMMarcello
10/27/2025, 5:20 PMSahil
10/27/2025, 8:51 PMSahil
10/27/2025, 8:51 PMSahil
10/27/2025, 8:52 PMSahil
10/27/2025, 8:52 PMSahil
10/27/2025, 8:52 PMMarcello
10/28/2025, 7:32 AMMarcello
10/28/2025, 7:32 AMMarcello
10/28/2025, 7:32 AMMarcello
10/28/2025, 7:33 AM