Skip to content

Commit 91a9565

Browse files
authored
Merge pull request #27 from nexmo-community/tony-get-recording
Get the specified recording.
2 parents 863fc05 + d496e15 commit 91a9565

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

voice/get-recording.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env python3
2+
import nexmo
3+
from pprint import pprint
4+
5+
client = nexmo.Client(
6+
application_id=APPLICATION_ID,
7+
private_key=APPLICATION_PRIVATE_KEY_PATH,
8+
)
9+
10+
response = client.get_recording(URL)
11+
pprint(response)
12+

0 commit comments

Comments
 (0)