Import Data
Imports the data from the given file. This is commonly used for importing PCAP and EVTX data directly into the node. The max file size defaults to 25MB unless customized in the server configuration. Example directory listing of a PCAP file being uploaded for import:
-rw-r--r-- 1 jertel jertel 1355 Jan 27 18:15 hdcp_authentication_sample.pcap
Example POST request, with some of the noteworthy headers shown:
POST /connect/gridmembers/manager_standalone/import
...
content-length: 1584
content-type: multipart/form-data; boundary=----WebKitFormBoundaryaKfZhnMSKrgA9HJh
...
------WebKitFormBoundaryaKfZhnMSKrgA9HJh
Content-Disposition: form-data; name="attachment"; filename="hdcp_authentication_sample.pcap"
Content-Type: application/vnd.tcpdump.pcap
<< raw bytes >>
------WebKitFormBoundaryaKfZhnMSKrgA9HJh--
Path parameters
The full node ID (name_role) into which this data will be imported
Response
The data upload succeeded and the import has started
Changes
Changed in 2 of the 23 revisions of this API.22
- ▲
removed the media type
application/x-www-form-urlencodedfrom the request bodyrequest-body-media-type-removed
- ○
added the media type
multipart/form-datato the request bodyrequest-body-media-type-added
- ▲
- ▲
removed the media type
multipart/form-datafrom the request bodyrequest-body-media-type-removed
- ○
added the media type
application/x-www-form-urlencodedto the request bodyrequest-body-media-type-added
This revision also has 35 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog
- ▲