fill in basic details for remaining processors/modules

This commit is contained in:
Joel Wetzell
2026-03-26 17:57:08 -05:00
parent 3a92370cdd
commit cc77a35377
30 changed files with 336 additions and 66 deletions
@@ -4,9 +4,20 @@ sidebar:
label: Create
order: 1
---
This processor will create a SIP response message with an audio file as the payload. If this message is output to a SIP module using the [router.output](/processors/router/output) processor, then the SIP module will send the response to the caller and play the audio file included in the response.
- **type**: `sip.response.audio.create`
- **params**:
- **preWait**
- **audioFile**
- **postWait**
- **preWait**: the amount of time in milliseconds to wait before sending the response
- **audioFile**: the path to the audio file to include in the response
- **postWait**: the amount of time in milliseconds to wait after sending the response
### Example
This example will create a SIP response that will wait 1 second then play `response.wav` then wait another second before completing the response.
```
- type: sip.response.audio.create
params:
preWait: 1000
audioFile: "response.wav"
postWait: 1000
```
@@ -4,9 +4,20 @@ sidebar:
label: Create
order: 1
---
This processor will create a SIP DTMF response from the provided parameters. If this message is output to a SIP module using the [router.output](/processors/router/output) processor, then the SIP module will send the response to the caller and play the DTMF tones specified.
- **type**: `sip.response.dtmf.create`
- **params**:
- **preWait**
- **digits**
- **postWait**
- **preWait**: the amount of time in milliseconds to wait before sending the response
- **digits**: the DTMF digits to include in the response
- **postWait**: the amount of time in milliseconds to wait after sending the response
### 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.
```
- type: sip.response.dtmf.create
params:
preWait: 1000
digits: "1234"
postWait: 1000
```