Delete an application.
DELETEhttps://YOUR_SPACE.signalwire.com/api/laml/2010-04-01/Accounts/:AccountSid/Applications/:Sid
If the delete is successful, a 204 response, with no body, will be returned.
Permissions
The API token must include one of the following scopes: Voice or Messaging or Fax.
Request
Responses
- 204
No Content
Authorization: http
name: basic_authtype: httpscheme: basic
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Delete, "https://YOUR_SPACE.signalwire.com/api/laml/2010-04-01/Accounts/:AccountSid/Applications/:Sid");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear