For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Log inSign up
Support
cXMLREST API
cXMLREST API
  • Core
    • Compatibility API
    • cXML Specification
  • Guides
    • Compatibility API Webhooks
    • Receive SMS
    • Send SMS
    • Inbound Fax Callback
    • Add mustache template parameters to cXML responses
    • Gathering user input
  • Voice
    • Overview
    • Conference
    • Connect
    • Denoise
    • Dial
    • Echo
    • Enqueue
    • Gather
    • Hangup
    • Leave
    • Number
    • Pause
    • Pay
    • Play
    • Queue
    • Record
    • Redirect
    • Refer
    • Reject
    • Room
    • Say
    • Sip
    • Sms
    • Stream
    • Verto
    • VirtualAgent
  • Messaging
    • Overview
    • Message
    • Redirect
  • Fax
    • Overview
    • Receive
    • Reject
LogoLogoSignalWire Docs
Log inSign up
Support
On this page
  • Verb attributes
  • Nesting
  • Examples
  • Enable noise reduction
  • Disable noise reduction
Voice

Denoise

|View as Markdown|Open in Claude|
Was this page helpful?
Edit this page
Previous

Dial

Next
Built with

The <Denoise> verb enables or disables noise reduction for call audio inbound to SignalWire. It reduces noise on calls before dialing into a conference or forwarding to another number.

Verb attributes

This verb does not accept attributes.

Nesting

No other verbs can be nested within <Denoise>.

Examples

Enable noise reduction

This example illustrates enabling noise reduction on an inbound phone call prior to forwarding the call.

1<?xml version="1.0" encoding="UTF-8"?>
2<Response>
3 <Denoise>on</Denoise>
4 <Dial><Sip>sip:user@example.com;transport=udp</Sip></Dial>
5</Response>

Disable noise reduction

This example illustrates disabling noise reduction prior to recording and transcribing.

1<?xml version="1.0" encoding="UTF-8"?>
2<Response>
3 <Denoise>off</Denoise>
4 <Record timeout="5" transcribe="true"/>
5</Response>