## Stop full PCAP `client.magicTransit.pcaps.stop(stringpcapId, PCAPStopParamsparams, RequestOptionsoptions?): void` **put** `/accounts/{account_id}/pcaps/{pcap_id}/stop` Stop full PCAP. ### Parameters - `pcapId: string` Identifier. - `params: PCAPStopParams` - `account_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 }); await client.magicTransit.pcaps.stop('023e105f4ecef8ad9ca31a8372d0c353', { account_id: '023e105f4ecef8ad9ca31a8372d0c353', }); ```