Skip to content
Docs
Applications

Delete application

Delete application

client.zones.applications.delete(stringid, ApplicationDeleteParams { zoneId } params, RequestOptionsoptions?): void
DELETE/zones/{zoneId}/applications/{id}

Permanently deletes an application

ParametersExpand Collapse
id: string
params: ApplicationDeleteParams { zoneId }
zoneId: string

Delete application

import KeycardAPI from '@keycardai/api';

const client = new KeycardAPI({
  apiKey: process.env['KEYCARD_API_API_KEY'], // This is the default and can be omitted
});

await client.zones.applications.delete('id', { zoneId: 'zoneId' });
Returns Examples