api_app_destroy
DELETE
/api/app/{slug}/
const url = 'https://example.com/api/app/example/';const options = {method: 'DELETE', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://example.com/api/app/example/ \ --header 'Authorization: <Authorization>'Manage applications and all related operations.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”slug
required
string
Responses
Section titled “Responses”No response body