13242: Dial->SIP: Invalid sendDigits value
WARNING
This warning appears when the sendDigits attribute used with <Dial><Sip> contains characters outside 0 through 9, *, #, or w. Use sendDigits to send DTMF digits after the SIP call connects.
- The
sendDigitsvalue includes a character that is not supported for<Dial><Sip>. Only0through9,*,#, andware valid. - The value uses
WorAthroughD, which are accepted in some outbound call flows but are not valid for<Dial><Sip>. - Your application passes
sendDigitsthrough a URL or query string and does not preserve characters such as#correctly before generating the TwiML.
- Update the
sendDigitsvalue so it contains only0through9,*,#, andw. - If you need pauses, use lowercase
w. Do not use uppercaseWin<Dial><Sip>. - Review the code or template that generates your
<Dial><Sip>TwiML and remove any unsupported characters before returning the response. - If your application builds the value from a URL parameter, URL-encode
#and verify the final TwiML contains the exact digits you expect.