***
id: 654e2b4f-d4a0-49ac-b62f-f2d2962378a4
title: send\_digits
slug: /reference/send-digits
description: Send digit presses as DTMF tones.
max-toc-depth: 3
----------------
Send digit presses as DTMF tones.
An object that accepts the following properties.
## **Properties**
The digits to send. Valid values are `0123456789*#ABCDWw`. Character `W` is a 1 second delay, and `w` is a 500 ms delay.
## **Variables**
Set by the method:
* **send\_digits\_result:** (out) `success` | `failed`
## **Examples**
### Send digits
```yaml
version: 1.0.0
sections:
main:
- answer: {}
- send_digits:
digits: '012345'
- play:
url: 'say: ${send_digits_result}'
```
```json
{
"version": "1.0.0",
"sections": {
"main": [
{
"answer": {}
},
{
"send_digits": {
"digits": "012345"
}
},
{
"play": {
"url": "say: ${send_digits_result}"
}
}
]
}
}
```