{% method %}
Permanently deletes an application.
DELETE
https://api.catapult.inetwork.com/v1/users/{userId}/applications/{applicationId}
{% common %}
{% sample lang="bash" %}
curl -v -X DELETE https://api.catapult.inetwork.com/v1/users/{userId}/applications/{applicationId} -u {token}:{secret} -H "Content-type: application/json"
{% sample lang="js" %}
// Promise
client.Application.delete('a-j4f2j6mqz53mq')
.then(function (response) {
console.log(response);
});
// Callback
client.Application.delete('a-zuwwzrbea',
function (err, response) {
if (err) {
console.log(err);
}
else {
console.log(response);
}
});
{% sample lang="csharp" %}
await client.Application.DeleteAsync("a-zuwwfzzrbea");
{% sample lang="ruby" %}
app.delete()
{% endmethod %}