Skip to main content

Delete a Messaging Application

DELETE 

https://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

The resource was deleted successfully.

Authorization: http

name: BearerAuthtype: httpscheme: bearer
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"))
Request Collapse all
Base URL
https://dashboardapi.voxtelesys.net/api/v1
Auth
Parameters
— path
— query