## Delete Advanced Certificate Manager Certificate Pack `client.ssl.certificatePacks.delete(stringcertificatePackId, CertificatePackDeleteParamsparams, RequestOptionsoptions?): CertificatePackDeleteResponse` **delete** `/zones/{zone_id}/ssl/certificate_packs/{certificate_pack_id}` For a given zone, delete an advanced certificate pack. ### Parameters - `certificatePackId: string` Identifier. - `params: CertificatePackDeleteParams` - `zone_id: string` Identifier. ### Returns - `CertificatePackDeleteResponse` - `id?: string` Identifier. ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); const certificatePack = await client.ssl.certificatePacks.delete( '023e105f4ecef8ad9ca31a8372d0c353', { zone_id: '023e105f4ecef8ad9ca31a8372d0c353' }, ); console.log(certificatePack.id); ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": { "id": "023e105f4ecef8ad9ca31a8372d0c353" } } ```