0
(0)

This example describes how to export system scan reports from the latest scans as files in XML format.

    1. Get a list of scan groups within the current organization:

curl -X GET https://api.radar.f-secure.com/api/integration/scangroups/simple
-H ‘Content-Type: application/json’
-H ‘ApiAccessKey: {ApiAccessKey}’
-H ‘ApiSecretKey: {ApiSecretKey}’

    1. Extract the unique Id identifier from each of the returned scan groups.
    2. Get a list of system scans assigned to each scan group:

Use the previously extracted scan group Id as a parameter.

curl -X GET https://api.radar.f-secure.com/api/integration/scangroups\
/{scanGroupId}/systemscans
-H ‘Content-Type: application/json’
-H ‘ApiAccessKey: {ApiAccessKey}’
-H ‘ApiSecretKey: {ApiSecretKey}’

    1. Extract the Id from each of the returned system scans.
    2. Get a list of findings:

Use the previously extracted system scan Id as a parameter.

curl -X GET https://api.radar.f-secure.com/api/integration/systemscans\
/{scanId}/reports/latest
-H ‘Content-Type: application/json’
-H ‘ApiAccessKey: {ApiAccessKey}’
-H ‘ApiSecretKey: {ApiSecretKey}’

Note: You can also export the system scan report in docx format:

curl -X GET https://api.radar.f-secure.com/api/integration/systemscans\
/{scanId}/reports/latest?fileType=docx
-H ‘Content-Type: application/json’
-H ‘ApiAccessKey: {ApiAccessKey}’
-H ‘ApiSecretKey: {ApiSecretKey}’

Source : Official F-Secure Brand
Editor by : BEST Antivirus KBS Team

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

(Visited 13 times, 1 visits today)