Skip to main content

Delete an application.

DELETE 

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

No Content

Authorization: http

name: basic_authtype: httpscheme: basic
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());
Request Collapse all
Base URL
https://YOUR_SPACE.signalwire.com/api/laml/2010-04-01
Auth
Parameters
— pathrequired
— pathrequired
ResponseClear

Click the Send API Request button above and see the response here!