Data scan dashboard for instance
curl --request GET \
--url https://ccnnnnnn.cyrisma.com/app/partner/dashboards/dataimport requests
url = "https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data")
.asString();require 'uri'
require 'net/http'
url = URI("https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"current_grade": "<string>",
"previous_grade": "<string>",
"top_5_categories": [
{
"name": "<string>",
"times_searched": 123
}
],
"top_10_most_sensitive": [
{
"name": "<string>",
"ip_address": "<string>",
"last_scanned": "<string>",
"total_scans": 123,
"total_sensitive_items": 123,
"percent_sensitive": 123,
"risk_grade": "<string>"
}
]
}Dashboards
Data scan dashboard for instance
Returns data scan dashboard data for the instance associated with the access token.
The data scan dashboard includes metrics such as total data risk score, data risk grade, and breakdown of data risks by category.
Required headers:
Authorization: access_token {token}
GET
/
partner
/
dashboards
/
data
Data scan dashboard for instance
curl --request GET \
--url https://ccnnnnnn.cyrisma.com/app/partner/dashboards/dataimport requests
url = "https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data")
.asString();require 'uri'
require 'net/http'
url = URI("https://ccnnnnnn.cyrisma.com/app/partner/dashboards/data")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"current_grade": "<string>",
"previous_grade": "<string>",
"top_5_categories": [
{
"name": "<string>",
"times_searched": 123
}
],
"top_10_most_sensitive": [
{
"name": "<string>",
"ip_address": "<string>",
"last_scanned": "<string>",
"total_scans": 123,
"total_sensitive_items": 123,
"percent_sensitive": 123,
"risk_grade": "<string>"
}
]
}Headers
Response
OK
Represents dashboard data including grades and sensitive data information.
Current overall grade.
Previous overall grade.
List of top 5 sensitive data categories.
Show child attributes
Show child attributes
List of top 10 most sensitive data targets.
Show child attributes
Show child attributes
