Delete an Application

In this code snippet you will see how to delete the specified Application.

Example

You will need to ensure that the following replaceable values are set in the example code using any convenient method:

KeyDescription
VONAGE_API_KEY

Your Vonage API key (see it on your dashboard).

VONAGE_API_SECRET

Your Vonage API secret (also available on your dashboard).

VONAGE_APPLICATION_ID

The Vonage Application ID.

Write the code

Add the following to delete-application.sh:

curl -X "DELETE" "https://api.nexmo.com/v2/applications/$VONAGE_APPLICATION_ID" \
     -H 'Content-Type: application/json' \
     -u "$VONAGE_API_KEY:$VONAGE_API_SECRET"

View full source

Run your code

Save this file to your machine and run it:

./delete-application.sh

Prerequisites

npm install @vonage/server-sdk

Create a file named delete-application.js and add the following code:

const { Vonage } = require('@vonage/server-sdk');

const vonage = new Vonage({
  apiKey: VONAGE_API_KEY,
  apiSecret: VONAGE_API_SECRET,
});

View full source

Write the code

Add the following to delete-application.js:

vonage.applications.deleteApplication(VONAGE_APPLICATION_ID)
  .then((resp) => console.log(resp))
  .catch((error) => console.error(error));

View full source

Run your code

Save this file to your machine and run it:

node delete-application.js

Prerequisites

Add the following to build.gradle:

implementation 'com.vonage:server-sdk-kotlin:2.1.1'

Create a file named DeleteApplication and add the following code to the main method:

val client = Vonage {
    apiKey(VONAGE_API_KEY)
    apiSecret(VONAGE_API_SECRET)
}

View full source

Write the code

Add the following to the main method of the DeleteApplication file:

client.application.application(VONAGE_APPLICATION_ID).delete()

View full source

Run your code

We can use the application plugin for Gradle to simplify the running of our application. Update your build.gradle with the following:

apply plugin: 'application'
mainClassName = project.hasProperty('main') ? project.getProperty('main') : ''

Run the following gradle command to execute your application, replacing com.vonage.quickstart.kt.application with the package containing DeleteApplication:

gradle run -Pmain=com.vonage.quickstart.kt.application.DeleteApplication

Prerequisites

Add the following to build.gradle:

implementation 'com.vonage:server-sdk:9.3.1'

Create a file named DeleteApplication and add the following code to the main method:

VonageClient client = VonageClient.builder()
        .apiKey(VONAGE_API_KEY)
        .apiSecret(VONAGE_API_SECRET)
        .build();

View full source

Write the code

Add the following to the main method of the DeleteApplication file:

client.getApplicationClient().deleteApplication(VONAGE_APPLICATION_ID);

View full source

Run your code

We can use the application plugin for Gradle to simplify the running of our application. Update your build.gradle with the following:

apply plugin: 'application'
mainClassName = project.hasProperty('main') ? project.getProperty('main') : ''

Run the following gradle command to execute your application, replacing com.vonage.quickstart.application with the package containing DeleteApplication:

gradle run -Pmain=com.vonage.quickstart.application.DeleteApplication

Prerequisites

Install-Package Vonage

Create a file named DeleteApplication.cs and add the following code:

using Vonage;
using Vonage.Request;

View full source

Add the following to DeleteApplication.cs:

var client = new VonageClient(credentials);
var response = await client.ApplicationClient.DeleteApplicationAsync(VONAGE_APPLICATION_ID);

View full source

Write the code

Add the following to DeleteApplication.cs:

var response = await client.ApplicationClient.DeleteApplicationAsync(VONAGE_APPLICATION_ID);

View full source

Prerequisites

composer require vonage/client

Create a file named delete-application.php and add the following code:

$basic  = new \Vonage\Client\Credentials\Basic(VONAGE_API_KEY, VONAGE_API_SECRET);
$client = new \Vonage\Client(new \Vonage\Client\Credentials\Container($basic));

View full source

Write the code

Add the following to delete-application.php:

try {
    $isDeleted = $client->applications()->delete(VONAGE_APPLICATION_ID);

    if ($isDeleted) {
        echo "Deleted application " . VONAGE_APPLICATION_ID . PHP_EOL;
    } else {
        echo "Could not delete application " . VONAGE_APPLICATION_ID . PHP_EOL;
    }
} catch (\Vonage\Client\Exception\Request $e) {
    echo "There was a problem with the request: " . $e->getMessage() . PHP_EOL;
} catch (\Vonage\Client\Exception\Server $e) {
    echo "The server encounted an error: " . $e->getMessage() . PHP_EOL;
}

View full source

Run your code

Save this file to your machine and run it:

php delete-application.php

Prerequisites

pip install vonage python-dotenv

Write the code

Add the following to delete-application.py:

from vonage import Auth, Vonage

client = Vonage(Auth(api_key=VONAGE_API_KEY, api_secret=VONAGE_API_SECRET))

client.application.delete_application(VONAGE_APPLICATION_ID)

View full source

Run your code

Save this file to your machine and run it:

python application/delete-application.py

Prerequisites

gem install vonage

Create a file named delete-application.rb and add the following code:

client = Vonage::Client.new(
  api_key: VONAGE_API_KEY,
  api_secret: VONAGE_API_SECRET
)

View full source

Write the code

Add the following to delete-application.rb:

response = client.applications.delete(VONAGE_APPLICATION_ID)

View full source

Run your code

Save this file to your machine and run it:

ruby delete-application.rb