Delete a Messaging Application
DELETEhttps://dashboardapi.voxtelesys.net/api/v1/messaging_applications/:guid
Endpoint for deleting a messaging application.
Request
Path Parameters
guid string
Example: 639a6020-b5d3-47be-9413-6cc3fe54b161]
Query Parameters
trunk_group_id integer
The trunk group ID that the messaging applications belong to. If this parameter is excluded and you only have one service trunk group, then this value will be automatically determined. If you have more than one service trunk group, you must include this parameter.
Default value:
null
Example: 70000
Responses
- 204
The resource was deleted successfully.
Authorization: http
name: BearerAuthtype: httpscheme: bearer
- python
- curl
- csharp
- go
- nodejs
- ruby
- php
- java
- powershell
- dart
- javascript
- c
- objective-c
- ocaml
- r
- swift
- kotlin
- rust
- HTTP.CLIENT
- REQUESTS
import http.client
conn = http.client.HTTPSConnection("dashboardapi.voxtelesys.net")
payload = ''
headers = {
'Authorization': 'Bearer <token>'
}
conn.request("DELETE", "/api/v1/messaging_applications/:guid", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))