13232: Dial->Conference: Invalid startConferenceOnEnter value
VOICE
WARNING
Twilio returns this warning when the <Conference> noun inside <Dial> includes a startConferenceOnEnter value other than true or false. Use startConferenceOnEnter to control whether a participant starts the conference when joining. If you omit the attribute, the default value is true. If you set it to false before the conference starts, that participant is muted and hears background music until another participant joins with startConferenceOnEnter="true".
- The
<Conference>noun setsstartConferenceOnEnterto a value other thantrueorfalse. - A dynamic value in your TwiML or application logic resolves to an unsupported value for
startConferenceOnEnter. The attribute only acceptstrueorfalse. - You are trying to implement a moderated conference, but the participant who should start the conference was not assigned a valid
startConferenceOnEntervalue.
- Set
startConferenceOnEntertotrueorfalsein your<Conference>TwiML. - Remove the
startConferenceOnEnterattribute if you want to use the default behavior. The default value istrue. - If you are building a moderated conference, set
startConferenceOnEnter="true"for participants who should start the conference andstartConferenceOnEnter="false"for participants who should wait in the lobby with background music. - Validate the value before you generate TwiML so your application only sends supported boolean values.