@@ -125,7 +125,6 @@ sms.send_message({
125125})
126126```
127127
128- Support link: [ Send sms] ( https://gitlab.com/codeonrocks/client/nexmo-python/uploads/17e17c6f05f6d28c53596f2412c627c2/SMSSendMessage.PNG )
129128
130129### Send SMS with unicode
131130
@@ -138,7 +137,6 @@ responseData = client.send_message({
138137})
139138```
140139
141- Reference: [ Send sms with unicode] ( https://developer.nexmo.com/messaging/sms/code-snippets/send-an-sms-with-unicode )
142140
143141** Using Sms Class**
144142
@@ -198,7 +196,6 @@ voice.create_all({
198196})
199197```
200198
201- Testing screenshots:[ create call] ( https://gitlab.com/codeonrocks/client/nexmo-python/uploads/fc104415f55a4ad22ecf8defd90b926b/NexmoVoiceUsage.PNG )
202199
203200### Retrieve a list of calls
204201
@@ -217,8 +214,6 @@ voice = Voice(client)
217214voice.get_calls()
218215```
219216
220- Testing screenshots: [ get calls] ( https://gitlab.com/codeonrocks/client/nexmo-python/uploads/a5cc162f255dc83b8cdd1d2f80531925/NexmoVoiceGetCalls.PNG )
221-
222217### Retrieve a single call
223218
224219``` python
@@ -236,8 +231,6 @@ voice = Voice(client)
236231voice.get_call(uuid)
237232```
238233
239- Testing Screenshots: [ get single call] ( https://gitlab.com/codeonrocks/client/nexmo-python/uploads/5cef34880afdc6a4c3cd3dee0e84aae2/NexmoVoiceGetSingleCall.PNG )
240-
241234### Update a call
242235
243236``` python
@@ -260,8 +253,6 @@ response = voice.create_all({
260253voice.update_call(response[' uuid' ], action = ' hangup' )
261254```
262255
263- Support Link: [ update call] ( https://gitlab.com/codeonrocks/client/nexmo-python/uploads/bdf7c0990b6d4019a2758a7148fdf1e4/VoiceUpdateCall.PNG )
264-
265256### Stream audio to a call
266257
267258``` python
@@ -287,8 +278,6 @@ response = voice.create_call({
287278voice.send_audio(response[' uuid' ],stream_url = [stream_url])
288279```
289280
290- Support link: [ Send audio stream] ( https://gitlab.com/codeonrocks/client/nexmo-python/uploads/fdc22d76f6bb5c8abf625311f222512a/VoiceSendAudioStream.PNG )
291-
292281### Stop streaming audio to a call
293282
294283``` python
@@ -313,8 +302,6 @@ voice.send_audio(response['uuid'],stream_url=[stream_url])
313302voice.stop_audio(response[' uuid' ])
314303```
315304
316- Support Link: [ Stop audio stream] ( https://gitlab.com/codeonrocks/client/nexmo-python/uploads/589be23c5a31694e310aacf0fa6a2314/VoiceSendStopAudioStream.PNG )
317-
318305### Send a synthesized speech message to a call
319306
320307``` python
@@ -337,7 +324,6 @@ response = voice.create_call({
337324voice.send_speech(response[' uuid' ], text = ' Hello from nexmo' )
338325```
339326
340- Support link: [ Send speech] ( https://gitlab.com/codeonrocks/client/nexmo-python/uploads/d608bfe3b1fb288c9f4854d76fba37af/VoiceSendSpeech.PNG )
341327
342328### Stop sending a synthesized speech message to a call
343329
@@ -362,8 +348,6 @@ Docs: [https://developer.nexmo.com/api/voice#stopTalk](https://developer.nexmo.c
362348>> > voice.stop_speech(response[' uuid' ])
363349```
364350
365- Support link: [ Stop speech] ( https://gitlab.com/codeonrocks/client/nexmo-python/uploads/246801f2e34d147955ac3531e4e7b65d/VoiceSendStopSpeech.PNG )
366-
367351### Send DTMF tones to a call
368352
369353``` python
@@ -386,7 +370,6 @@ response = voice.create_call({
386370voice.send_dtmf(response[' uuid' ], digits = ' 1234' )
387371```
388372
389- Support link: [ Send DTMF] ( https://gitlab.com/codeonrocks/client/nexmo-python/uploads/7c4b25014d6c94eb886cbaa9a55d2ae3/VoiceSendDTMF.PNG )
390373
391374### Get recording
392375
0 commit comments