Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Latest commit

 

History

History
50 lines (38 loc) · 933 Bytes

deleteApplicationsApplicationId.md

File metadata and controls

50 lines (38 loc) · 933 Bytes

{% method %}

Remove Application

Permanently deletes an application.

Request Url

DELETEhttps://api.catapult.inetwork.com/v1/users/{userId}/applications/{applicationId}

{% common %}

Example 1 of 1: Delete an application.

{% 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 %}