Skip to content

Commit fe9c365

Browse files
authored
Merge pull request #25 from nexmo-community/play-dtmf-into-call
Add play DTMF into call building block
2 parents 71d5b40 + 3502d19 commit fe9c365

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

voice/play-dtmf-into-call.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import nexmo
2+
3+
client = nexmo.Client(
4+
application_id=APPLICATION_ID,
5+
private_key=APPLICATION_PRIVATE_KEY_PATH,
6+
)
7+
8+
client.send_dtmf(NEXMO_CALL_UUID, digits='1234')

0 commit comments

Comments
 (0)