VB.NET / Plivo REST API / Stop playing text to a member
Back to Collection Items
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.
Dim http As New Chilkat.Http
Dim success As Boolean
http.BasicAuth = True
http.Login = "{{auth_id}}"
http.Password = "password"
Dim resp As Chilkat.HttpResponse = http.QuickRequest("DELETE","https://api.plivo.com/v1/Account/<auth_id>/Conference/{conference_name}/Member/{member_id}/Speak/")
If (http.LastMethodSuccess = False) Then
Debug.WriteLine(http.LastErrorText)
Exit Sub
End If
Debug.WriteLine(resp.StatusCode)
Debug.WriteLine(resp.BodyStr)
Curl Command
curl -X DELETE
-u '{{auth_id}}:password'
https://api.plivo.com/v1/Account/<auth_id>/Conference/{conference_name}/Member/{member_id}/Speak/
Postman Collection Item JSON
{
"name": "Stop playing text to a member",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "https://api.plivo.com/v1/Account/{{auth_id}}/Conference/{conference_name}/Member/{member_id}/Speak/",
"protocol": "https",
"host": [
"api",
"plivo",
"com"
],
"path": [
"v1",
"Account",
"{{auth_id}}",
"Conference",
"{conference_name}",
"Member",
"{member_id}",
"Speak",
""
]
},
"description": "This API will stop playing text to a member in a conference which was initiated by the Play Text API\n\nMore information can be found [here](https://www.plivo.com/docs/voice/api/conference/member#stop-playing-text-to-a-member)"
},
"response": [
{
"name": "Stop playing text to a member",
"originalRequest": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "https://api.plivo.com/v1/Account/{{auth_id}}/Conference/{conference_name}/Member/{member_id}/Speak/",
"protocol": "https",
"host": [
"api",
"plivo",
"com"
],
"path": [
"v1",
"Account",
"{{auth_id}}",
"Conference",
"{conference_name}",
"Member",
"{member_id}",
"Speak",
""
]
}
},
"code": 204,
"_postman_previewlanguage": "json",
"header": [
],
"cookie": [
],
"body": "{\n \"message\": \"speak stopped\",\n \"member_id\": \"10\",\n \"api_id\": \"2867b6e2-58c3-11e1-86da-adf28403fe48\"\n}"
}
]
}