Download Thing PCAP File

This guide will show you how you can download Thing PCAP file for connection and SIM usage analysis.

Download Thing PCAP File

GET https://console.monogoto.io/thing/ThingId_ICCID_{ICCID}/pcap?From={START_DATE/TIME}&To={END_DATE/TIME}

Path Parameters

Name
Type
Description

ICCID*

String

The ICCID of your SIM

START_DATE/TIME

String

Date/time in Epoch format

END_DATE/TIME

String

Date/time in Epoch format

Headers

Name
Type
Description

YOUR_TOKEN*

String

Your authentication token

PCAP file

Example using cURL:

curl -X GET \
    --url "https://console.monogoto.io/thing/ThingId_ICCID_{ICCID_HERE}/pcap?From={START_DATE/TIME}&To={END_DATE/TIME}" \
    -H "accept: application/json" \
    -H "Authorization: Bearer {TOKEN_HERE}"

Please note that the above shown command needs to be replaced with information:

{TOKEN_HERE} - replace with your token

{ICCID_HERE} - replace with the ICCID of your SIM

{START_DATE/TIME} - replace with the timestamp of start period date/time in Epoch format. You may use a converter that can be found following this link

{END_DATE/TIME} - replace with the timestamp of end period date/time in Epoch format. You may use a converter that can be found following this link

{EVEN_MESSAGE_TYPE} - replace with the Event message type to be displayed

Example of request that will show PCAP results for our SIM card Date/time range is from 2020 December 1st 00:00:01 GMT+0 to 2020 December 31st 23:59:59 GMT+0

Result should generate you a link for PCAP file download:

Last updated

Was this helpful?