13216: Invalid timeLimit value
VOICE
WARNING
This warning appears when your <Dial> verb includes a timeLimit value that is not a positive integer in seconds. Use timeLimit to set the maximum duration of the <Dial>. If you omit timeLimit, Twilio uses the default limit of 14400 seconds, or 4 hours.
- The
timeLimitattribute is set to0, a negative value, or an empty value. - The
timeLimitattribute contains a decimal value instead of a whole number of seconds. - The
timeLimitattribute includes non-numeric characters or a malformed string. - Your application generates TwiML dynamically and passes an invalid value into the
<Dial>verb.
- Set
timeLimitto a positive integer in seconds, such astimeLimit="120". - Validate any user input or application variable before you add it to the
<Dial>verb. - Convert dynamic values to a whole number before returning TwiML to Twilio.
- Remove
timeLimitif you want Twilio to use the default call limit.