VB.NET / Plivo REST API / Delete a Specific Recording
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>/Recording/{recording_id}/")
If (http.LastMethodSuccess = False) Then
Debug.WriteLine(http.LastErrorText)
Exit Sub
End If
Dim respStatusCode As Integer = resp.StatusCode
Debug.WriteLine("Response Status Code = " & respStatusCode)
If (respStatusCode <> 204) Then
Debug.WriteLine("Response Header:")
Debug.WriteLine(resp.Header)
Debug.WriteLine("Response Body:")
Debug.WriteLine(resp.BodyStr)
Debug.WriteLine("Failed.")
Exit Sub
End If
Debug.WriteLine("Success.")
Curl Command
curl -X DELETE
-u '{{auth_id}}:password'
https://api.plivo.com/v1/Account/<auth_id>/Recording/{recording_id}/
Postman Collection Item JSON
{
"name": "Delete a Specific Recording",
"request": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "https://api.plivo.com/v1/Account/{{auth_id}}/Recording/{recording_id}/",
"protocol": "https",
"host": [
"api",
"plivo",
"com"
],
"path": [
"v1",
"Account",
"{{auth_id}}",
"Recording",
"{recording_id}",
""
]
},
"description": "This API lets you delete a recording from your Plivo account using the recording ID.\n\nMore information can be found [here](This API lets you delete a recording from your Plivo account using the recording ID.)"
},
"response": [
{
"name": "Delete a Specific Recording",
"originalRequest": {
"method": "DELETE",
"header": [
],
"url": {
"raw": "https://api.plivo.com/v1/Account/{{auth_id}}/Recording/{recording_id}/",
"protocol": "https",
"host": [
"api",
"plivo",
"com"
],
"path": [
"v1",
"Account",
"{{auth_id}}",
"Recording",
"{recording_id}",
""
]
}
},
"code": 204,
"_postman_previewlanguage": "Text",
"header": [
],
"cookie": [
],
"body": ""
}
]
}