jacob Munson
05/14/2026, 4:20 PMChiranjeet Mishra
05/14/2026, 4:45 PMendCallPhrases list contains "thanks for calling", which is also present verbatim in the assistant's firstMessage, causing Vapi to detect the phrase from the assistant's own greeting and immediately end the call.
----
Fix
Remove "thanks for calling" and "thank you for calling" from endCallPhrases — these are common business greeting phrases that will always conflict with inbound call openers. Use only unambiguous farewell phrases:
"endCallPhrases": ["goodbye", "take care", "have a good day"]
Alternatively, rewrite the firstMessage to avoid the conflicting phrase:
"Hi there! You've reached SharpTop Tree Service. How can I help you today?"
----
Query to verify (reproduce)
SELECT id, ended_reason, started_at, ended_at
FROM call
WHERE id = '019e1d8e-ab6d-7000-b424-558bcc8b42d8'
AND created_at >= now() - INTERVAL 7 DAYjacob Munson
05/14/2026, 5:34 PMjacob Munson
05/14/2026, 5:46 PM