mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-14 17:53:38 +00:00
24 lines
766 B
Plaintext
24 lines
766 B
Plaintext
---
|
|
title: Create SIP DTMF Response
|
|
sidebar:
|
|
label: Create
|
|
order: 1
|
|
---
|
|
import SchemaInfo from '../../../../../../components/SchemaInfo.astro';
|
|
|
|
This processor will create a SIP DTMF response from the provided parameters. If this message is output to a SIP module using the [module.output](/processors/module/output) processor, then the SIP module will send the response to the caller and play the DTMF tones specified.
|
|
|
|
<SchemaInfo type="processor" id="sip.response.dtmf.create"/>
|
|
|
|
### Example
|
|
|
|
This example will create a SIP response that will wait 1 second then play the DTMF digits "1234" then wait another second before completing the response.
|
|
|
|
```yaml
|
|
- type: sip.response.dtmf.create
|
|
params:
|
|
preWait: 1000
|
|
digits: "1234"
|
|
postWait: 1000
|
|
```
|