Gather
The <Gather> verb transcribes speech or collects digits during a call.
Verb attributes
The action attribute takes in an absolute URL. SignalWire will make a GET or POST request to this URL when entering of digits is completed. If there is no URL provided, SignalWire will re-request the URL that was previously used, which can cause an unwanted looping behavior. Be sure to provide the proper URL in order to avoid this outcome. See below for specified request parameters.
Send a webhook to the action URL even if there is no input. By default, if no input is detected, the next XML instruction is executed but by setting actionOnEmptyResult to true, a callback to the action URL will be sent to continue call flow.
This attribute enables enhanced speech recognition, which will incur an added cost. When it is false, speechModel has no effect.
The set of digits, (0-9, *, #), that can end a recording.
A list of words and phrases, each a max of 100 characters, a caller is likely to say during a call.
The type of input received from a caller (i.e. speech or DTMF). Values can be dtmf, speech, or dtmf speech.
The language in which you expect your callers to speak.
The method attribute specifies whether the request to action is a GET or a POST. Valid values are GET or POST.
The number of digits you expect to be pressed by a caller.
The URL to request to during speech recognition. No URL is specified by default.
The type of HTTP request to use when requesting a partialResultCallback.
Tells SignalWire whether or not to filter profane language when transcribing a call.
The model of enhanced speech recognition you would like to use. This attribute only has an effect if enhanced is true. Valid values are phone_call, video, or default. phone_call optimizes speech recognition for phone calls at a 8khz sample rate. video optimizes speech recognition for video calls at a 16khz sample rate. default will automatically choose the current best option between phone_call and video.
The set time, in seconds, that SignalWire will wait before ending speech recognition. If set to auto, SignalWire will automatically end speech recognition when there is a pause in speech.
The number of seconds of silence or inaction that denote the end of caller input.
Supported languages
You can find a list of our supported languages here.
Request parameters for action URL
The action request contains the Standard Request Parameters as well as:
The score, between 0.0 and 1.0, that determines the accuracy of a transcription.
The buttons pressed by a caller.
The transcribed result of the caller’s speech.
Nesting
The following verbs can be nested within a <Gather>:
<Play>: plays an audio file, that SignalWire fetches from the URL you configured, back to the caller.<Pause>: waits silently for a distinctive number of seconds.<Say>: reads supplied text back to the caller.
Examples
Handle gathered input on your server
This example demonstrates a complete flow: the initial cXML prompts the caller for input, and your server handles the POST request to process Digits or SpeechResult and respond with appropriate cXML.
Request cXML
Server Handler (Node.js)
This cXML is served to SignalWire (e.g., as your webhook response). It prompts the caller for input and specifies your server’s action URL to handle the result.
A simple gather
SignalWire will collect any speech or digits pressed during a call.
Nesting <Say> within a gather
You can use the <Say> verb to prompt callers to enter the desired input. In this example, when a caller enters their account number, SignalWire will submit the result to the URL provided in the action attribute. If the caller does not enter any digits, SignalWire will prompt the ‘Goodbye’ statement.
Nesting <Play> within a gather
You can use the <Play> verb to prompt callers to enter the desired input. In this example, when a caller enters their account number, SignalWire will submit the result to the URL provided in the action attribute. If the caller does not enter any digits, SignalWire will prompt the ‘Goodbye’ statement.
Gather DTMF or speech
A caller can access their account information either through speech recognition or DTMF tones. SignalWire will wait 5 seconds before processing the information and sending the data.
Potential issues
<Gather> doesn’t receive caller input when the caller is using a VoIP phone.
Solution: Some VoIP phones have trouble sending DTMF tones. Phones typically use compressed bandwidth-conserving audio protocols that can interfere with the transmission of the digit’s signal.
The Digits parameter is not sent to the <Gather> URL.
Solution: Verify that your application is not responding to the action URL with an HTTP 3xx redirect. SignalWire will follow this redirect but will not resend the Digits parameter.