Reputation: 22106
One or more of the StatusCallbackEvents provided were invalid.
invalidStatusCallbackEvents "canceled no-answer busy failed"
I removed those 4 events from above since they do not seem to ever be valid according to:
Is this the correct way to fix the issue? Or are those 4 StatusCallbackEvents valid under some context?
Upvotes: 0
Views: 1184
Reputation: 73029
Twilio developer evangelist here.
You're correct, none of those are events, they are statuses. In fact, they are all statuses that could be sent as part of the "completed" event.
The call events you can register for callbacks for are: initiated
, ringing
, answered
and completed
.
Upvotes: 3