Skip to main content

pcaps_download

Creates, updates, deletes, gets or lists a pcaps_download resource.

Overview

Namepcaps_download
TypeResource
Idcloudflare.magic_transit.pcaps_download

Fields

The following fields are returned by SELECT queries:

Download Simple PCAP response.

NameDatatypeDescription
contentsstring

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
downloadselectpcap_id, account_idDownload PCAP information into a file. Response is a binary PCAP file.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
account_idstringThe Cloudflare account ID.
pcap_idstring

SELECT examples

Download PCAP information into a file. Response is a binary PCAP file.

SELECT
contents
FROM cloudflare.magic_transit.pcaps_download
WHERE pcap_id = '{{ pcap_id }}' -- required
AND account_id = '{{ account_id }}' -- required
;