Search for relationships by domain/name (deprecated)
curl --request GET \
--url https://app.visotrust.com/api/v1/relationships/search \
--header 'Content-Type: application/json' \
--data '
{
"domains": [
"<string>"
],
"name": "<string>",
"externalId": "<string>",
"statuses": [
"<string>"
],
"assessmentStatuses": [
"<string>"
],
"riskAcceptanceStatuses": [
"<string>"
],
"residualRiskLevels": [
"<string>"
],
"inherentRiskLevels": [
"<string>"
],
"minScore": 123,
"maxScore": 123,
"businessUnitIds": [
123
],
"vendorTierIds": [
123
],
"businessOwnerIds": [
123
],
"creatorIds": [
123
],
"primaryContactIds": [
123
],
"tags": [
"<string>"
],
"createdAfter": "2023-11-07T05:31:56Z",
"createdBefore": "2023-11-07T05:31:56Z",
"recertificationAfter": "2023-11-07T05:31:56Z",
"recertificationBefore": "2023-11-07T05:31:56Z",
"onboardedAfter": "2023-11-07T05:31:56Z",
"onboardedBefore": "2023-11-07T05:31:56Z",
"assessmentCompletedAfter": "2023-11-07T05:31:56Z",
"assessmentCompletedBefore": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://app.visotrust.com/api/v1/relationships/search"
payload = {
"domains": ["<string>"],
"name": "<string>",
"externalId": "<string>",
"statuses": ["<string>"],
"assessmentStatuses": ["<string>"],
"riskAcceptanceStatuses": ["<string>"],
"residualRiskLevels": ["<string>"],
"inherentRiskLevels": ["<string>"],
"minScore": 123,
"maxScore": 123,
"businessUnitIds": [123],
"vendorTierIds": [123],
"businessOwnerIds": [123],
"creatorIds": [123],
"primaryContactIds": [123],
"tags": ["<string>"],
"createdAfter": "2023-11-07T05:31:56Z",
"createdBefore": "2023-11-07T05:31:56Z",
"recertificationAfter": "2023-11-07T05:31:56Z",
"recertificationBefore": "2023-11-07T05:31:56Z",
"onboardedAfter": "2023-11-07T05:31:56Z",
"onboardedBefore": "2023-11-07T05:31:56Z",
"assessmentCompletedAfter": "2023-11-07T05:31:56Z",
"assessmentCompletedBefore": "2023-11-07T05:31:56Z"
}
headers = {"Content-Type": "application/json"}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
domains: ['<string>'],
name: '<string>',
externalId: '<string>',
statuses: ['<string>'],
assessmentStatuses: ['<string>'],
riskAcceptanceStatuses: ['<string>'],
residualRiskLevels: ['<string>'],
inherentRiskLevels: ['<string>'],
minScore: 123,
maxScore: 123,
businessUnitIds: [123],
vendorTierIds: [123],
businessOwnerIds: [123],
creatorIds: [123],
primaryContactIds: [123],
tags: ['<string>'],
createdAfter: '2023-11-07T05:31:56Z',
createdBefore: '2023-11-07T05:31:56Z',
recertificationAfter: '2023-11-07T05:31:56Z',
recertificationBefore: '2023-11-07T05:31:56Z',
onboardedAfter: '2023-11-07T05:31:56Z',
onboardedBefore: '2023-11-07T05:31:56Z',
assessmentCompletedAfter: '2023-11-07T05:31:56Z',
assessmentCompletedBefore: '2023-11-07T05:31:56Z'
})
};
fetch('https://app.visotrust.com/api/v1/relationships/search', 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://app.visotrust.com/api/v1/relationships/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'domains' => [
'<string>'
],
'name' => '<string>',
'externalId' => '<string>',
'statuses' => [
'<string>'
],
'assessmentStatuses' => [
'<string>'
],
'riskAcceptanceStatuses' => [
'<string>'
],
'residualRiskLevels' => [
'<string>'
],
'inherentRiskLevels' => [
'<string>'
],
'minScore' => 123,
'maxScore' => 123,
'businessUnitIds' => [
123
],
'vendorTierIds' => [
123
],
'businessOwnerIds' => [
123
],
'creatorIds' => [
123
],
'primaryContactIds' => [
123
],
'tags' => [
'<string>'
],
'createdAfter' => '2023-11-07T05:31:56Z',
'createdBefore' => '2023-11-07T05:31:56Z',
'recertificationAfter' => '2023-11-07T05:31:56Z',
'recertificationBefore' => '2023-11-07T05:31:56Z',
'onboardedAfter' => '2023-11-07T05:31:56Z',
'onboardedBefore' => '2023-11-07T05:31:56Z',
'assessmentCompletedAfter' => '2023-11-07T05:31:56Z',
'assessmentCompletedBefore' => '2023-11-07T05:31:56Z'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.visotrust.com/api/v1/relationships/search"
payload := strings.NewReader("{\n \"domains\": [\n \"<string>\"\n ],\n \"name\": \"<string>\",\n \"externalId\": \"<string>\",\n \"statuses\": [\n \"<string>\"\n ],\n \"assessmentStatuses\": [\n \"<string>\"\n ],\n \"riskAcceptanceStatuses\": [\n \"<string>\"\n ],\n \"residualRiskLevels\": [\n \"<string>\"\n ],\n \"inherentRiskLevels\": [\n \"<string>\"\n ],\n \"minScore\": 123,\n \"maxScore\": 123,\n \"businessUnitIds\": [\n 123\n ],\n \"vendorTierIds\": [\n 123\n ],\n \"businessOwnerIds\": [\n 123\n ],\n \"creatorIds\": [\n 123\n ],\n \"primaryContactIds\": [\n 123\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"createdAfter\": \"2023-11-07T05:31:56Z\",\n \"createdBefore\": \"2023-11-07T05:31:56Z\",\n \"recertificationAfter\": \"2023-11-07T05:31:56Z\",\n \"recertificationBefore\": \"2023-11-07T05:31:56Z\",\n \"onboardedAfter\": \"2023-11-07T05:31:56Z\",\n \"onboardedBefore\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedAfter\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedBefore\": \"2023-11-07T05:31:56Z\"\n}")
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.visotrust.com/api/v1/relationships/search")
.header("Content-Type", "application/json")
.body("{\n \"domains\": [\n \"<string>\"\n ],\n \"name\": \"<string>\",\n \"externalId\": \"<string>\",\n \"statuses\": [\n \"<string>\"\n ],\n \"assessmentStatuses\": [\n \"<string>\"\n ],\n \"riskAcceptanceStatuses\": [\n \"<string>\"\n ],\n \"residualRiskLevels\": [\n \"<string>\"\n ],\n \"inherentRiskLevels\": [\n \"<string>\"\n ],\n \"minScore\": 123,\n \"maxScore\": 123,\n \"businessUnitIds\": [\n 123\n ],\n \"vendorTierIds\": [\n 123\n ],\n \"businessOwnerIds\": [\n 123\n ],\n \"creatorIds\": [\n 123\n ],\n \"primaryContactIds\": [\n 123\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"createdAfter\": \"2023-11-07T05:31:56Z\",\n \"createdBefore\": \"2023-11-07T05:31:56Z\",\n \"recertificationAfter\": \"2023-11-07T05:31:56Z\",\n \"recertificationBefore\": \"2023-11-07T05:31:56Z\",\n \"onboardedAfter\": \"2023-11-07T05:31:56Z\",\n \"onboardedBefore\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedAfter\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedBefore\": \"2023-11-07T05:31:56Z\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.visotrust.com/api/v1/relationships/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"domains\": [\n \"<string>\"\n ],\n \"name\": \"<string>\",\n \"externalId\": \"<string>\",\n \"statuses\": [\n \"<string>\"\n ],\n \"assessmentStatuses\": [\n \"<string>\"\n ],\n \"riskAcceptanceStatuses\": [\n \"<string>\"\n ],\n \"residualRiskLevels\": [\n \"<string>\"\n ],\n \"inherentRiskLevels\": [\n \"<string>\"\n ],\n \"minScore\": 123,\n \"maxScore\": 123,\n \"businessUnitIds\": [\n 123\n ],\n \"vendorTierIds\": [\n 123\n ],\n \"businessOwnerIds\": [\n 123\n ],\n \"creatorIds\": [\n 123\n ],\n \"primaryContactIds\": [\n 123\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"createdAfter\": \"2023-11-07T05:31:56Z\",\n \"createdBefore\": \"2023-11-07T05:31:56Z\",\n \"recertificationAfter\": \"2023-11-07T05:31:56Z\",\n \"recertificationBefore\": \"2023-11-07T05:31:56Z\",\n \"onboardedAfter\": \"2023-11-07T05:31:56Z\",\n \"onboardedBefore\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedAfter\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedBefore\": \"2023-11-07T05:31:56Z\"\n}"
response = http.request(request)
puts response.read_body[
{
"name": "<string>",
"id": 123,
"homepage": "<string>",
"description": "<string>",
"businessUnit": "<string>",
"createdDate": "2023-11-07T05:31:56Z",
"updatedDate": "2023-11-07T05:31:56Z",
"recertificationDate": "2023-11-07T05:31:56Z",
"inherentRiskScore": 123,
"residualRiskScore": 123,
"isTransitional": true,
"contextTypes": [
{
"name": "<string>"
}
],
"dataTypes": [
{
"name": "<string>"
}
],
"businessOwner": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"businessUnit": "<string>"
},
"assessmentLead": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"businessUnit": "<string>"
},
"subscribers": [
{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"businessUnit": "<string>"
}
],
"primaryContact": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>"
},
"tags": [
"<string>"
],
"tier": "<string>",
"complianceStandards": [],
"latestAssessment": {
"id": 123,
"sentToEmail": "<string>",
"createdDate": "2023-11-07T05:31:56Z",
"summary": "<string>",
"expirationDate": "2023-11-07T05:31:56Z",
"completedDate": "2023-11-07T05:31:56Z",
"requestedAuditTypes": [
"<string>"
],
"aiProcessingOnly": true,
"sentToFirstName": "<string>",
"sentToLastName": "<string>",
"assessmentType": "<string>",
"statusHistories": [
{
"date": "2023-11-07T05:31:56Z"
}
],
"recommendations": [
{
"description": "<string>",
"createdDate": "2023-11-07T05:31:56Z"
}
],
"updatedDate": "2023-11-07T05:31:56Z",
"phaseDate": "2023-11-07T05:31:56Z",
"sentBy": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"businessUnit": "<string>"
},
"requestedArtifactCollection": true
},
"externalId": "<string>",
"productId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"productName": "<string>",
"dimensionCoverage": [
{
"dimension": "<string>",
"inScope": true,
"coverage": "<string>",
"coveragePercentage": "<string>"
}
]
}
]Relationships
Search for relationships by domain/name (deprecated)
deprecated
GET
/
api
/
v1
/
relationships
/
search
Search for relationships by domain/name (deprecated)
curl --request GET \
--url https://app.visotrust.com/api/v1/relationships/search \
--header 'Content-Type: application/json' \
--data '
{
"domains": [
"<string>"
],
"name": "<string>",
"externalId": "<string>",
"statuses": [
"<string>"
],
"assessmentStatuses": [
"<string>"
],
"riskAcceptanceStatuses": [
"<string>"
],
"residualRiskLevels": [
"<string>"
],
"inherentRiskLevels": [
"<string>"
],
"minScore": 123,
"maxScore": 123,
"businessUnitIds": [
123
],
"vendorTierIds": [
123
],
"businessOwnerIds": [
123
],
"creatorIds": [
123
],
"primaryContactIds": [
123
],
"tags": [
"<string>"
],
"createdAfter": "2023-11-07T05:31:56Z",
"createdBefore": "2023-11-07T05:31:56Z",
"recertificationAfter": "2023-11-07T05:31:56Z",
"recertificationBefore": "2023-11-07T05:31:56Z",
"onboardedAfter": "2023-11-07T05:31:56Z",
"onboardedBefore": "2023-11-07T05:31:56Z",
"assessmentCompletedAfter": "2023-11-07T05:31:56Z",
"assessmentCompletedBefore": "2023-11-07T05:31:56Z"
}
'import requests
url = "https://app.visotrust.com/api/v1/relationships/search"
payload = {
"domains": ["<string>"],
"name": "<string>",
"externalId": "<string>",
"statuses": ["<string>"],
"assessmentStatuses": ["<string>"],
"riskAcceptanceStatuses": ["<string>"],
"residualRiskLevels": ["<string>"],
"inherentRiskLevels": ["<string>"],
"minScore": 123,
"maxScore": 123,
"businessUnitIds": [123],
"vendorTierIds": [123],
"businessOwnerIds": [123],
"creatorIds": [123],
"primaryContactIds": [123],
"tags": ["<string>"],
"createdAfter": "2023-11-07T05:31:56Z",
"createdBefore": "2023-11-07T05:31:56Z",
"recertificationAfter": "2023-11-07T05:31:56Z",
"recertificationBefore": "2023-11-07T05:31:56Z",
"onboardedAfter": "2023-11-07T05:31:56Z",
"onboardedBefore": "2023-11-07T05:31:56Z",
"assessmentCompletedAfter": "2023-11-07T05:31:56Z",
"assessmentCompletedBefore": "2023-11-07T05:31:56Z"
}
headers = {"Content-Type": "application/json"}
response = requests.get(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
domains: ['<string>'],
name: '<string>',
externalId: '<string>',
statuses: ['<string>'],
assessmentStatuses: ['<string>'],
riskAcceptanceStatuses: ['<string>'],
residualRiskLevels: ['<string>'],
inherentRiskLevels: ['<string>'],
minScore: 123,
maxScore: 123,
businessUnitIds: [123],
vendorTierIds: [123],
businessOwnerIds: [123],
creatorIds: [123],
primaryContactIds: [123],
tags: ['<string>'],
createdAfter: '2023-11-07T05:31:56Z',
createdBefore: '2023-11-07T05:31:56Z',
recertificationAfter: '2023-11-07T05:31:56Z',
recertificationBefore: '2023-11-07T05:31:56Z',
onboardedAfter: '2023-11-07T05:31:56Z',
onboardedBefore: '2023-11-07T05:31:56Z',
assessmentCompletedAfter: '2023-11-07T05:31:56Z',
assessmentCompletedBefore: '2023-11-07T05:31:56Z'
})
};
fetch('https://app.visotrust.com/api/v1/relationships/search', 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://app.visotrust.com/api/v1/relationships/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_POSTFIELDS => json_encode([
'domains' => [
'<string>'
],
'name' => '<string>',
'externalId' => '<string>',
'statuses' => [
'<string>'
],
'assessmentStatuses' => [
'<string>'
],
'riskAcceptanceStatuses' => [
'<string>'
],
'residualRiskLevels' => [
'<string>'
],
'inherentRiskLevels' => [
'<string>'
],
'minScore' => 123,
'maxScore' => 123,
'businessUnitIds' => [
123
],
'vendorTierIds' => [
123
],
'businessOwnerIds' => [
123
],
'creatorIds' => [
123
],
'primaryContactIds' => [
123
],
'tags' => [
'<string>'
],
'createdAfter' => '2023-11-07T05:31:56Z',
'createdBefore' => '2023-11-07T05:31:56Z',
'recertificationAfter' => '2023-11-07T05:31:56Z',
'recertificationBefore' => '2023-11-07T05:31:56Z',
'onboardedAfter' => '2023-11-07T05:31:56Z',
'onboardedBefore' => '2023-11-07T05:31:56Z',
'assessmentCompletedAfter' => '2023-11-07T05:31:56Z',
'assessmentCompletedBefore' => '2023-11-07T05:31:56Z'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://app.visotrust.com/api/v1/relationships/search"
payload := strings.NewReader("{\n \"domains\": [\n \"<string>\"\n ],\n \"name\": \"<string>\",\n \"externalId\": \"<string>\",\n \"statuses\": [\n \"<string>\"\n ],\n \"assessmentStatuses\": [\n \"<string>\"\n ],\n \"riskAcceptanceStatuses\": [\n \"<string>\"\n ],\n \"residualRiskLevels\": [\n \"<string>\"\n ],\n \"inherentRiskLevels\": [\n \"<string>\"\n ],\n \"minScore\": 123,\n \"maxScore\": 123,\n \"businessUnitIds\": [\n 123\n ],\n \"vendorTierIds\": [\n 123\n ],\n \"businessOwnerIds\": [\n 123\n ],\n \"creatorIds\": [\n 123\n ],\n \"primaryContactIds\": [\n 123\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"createdAfter\": \"2023-11-07T05:31:56Z\",\n \"createdBefore\": \"2023-11-07T05:31:56Z\",\n \"recertificationAfter\": \"2023-11-07T05:31:56Z\",\n \"recertificationBefore\": \"2023-11-07T05:31:56Z\",\n \"onboardedAfter\": \"2023-11-07T05:31:56Z\",\n \"onboardedBefore\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedAfter\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedBefore\": \"2023-11-07T05:31:56Z\"\n}")
req, _ := http.NewRequest("GET", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.visotrust.com/api/v1/relationships/search")
.header("Content-Type", "application/json")
.body("{\n \"domains\": [\n \"<string>\"\n ],\n \"name\": \"<string>\",\n \"externalId\": \"<string>\",\n \"statuses\": [\n \"<string>\"\n ],\n \"assessmentStatuses\": [\n \"<string>\"\n ],\n \"riskAcceptanceStatuses\": [\n \"<string>\"\n ],\n \"residualRiskLevels\": [\n \"<string>\"\n ],\n \"inherentRiskLevels\": [\n \"<string>\"\n ],\n \"minScore\": 123,\n \"maxScore\": 123,\n \"businessUnitIds\": [\n 123\n ],\n \"vendorTierIds\": [\n 123\n ],\n \"businessOwnerIds\": [\n 123\n ],\n \"creatorIds\": [\n 123\n ],\n \"primaryContactIds\": [\n 123\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"createdAfter\": \"2023-11-07T05:31:56Z\",\n \"createdBefore\": \"2023-11-07T05:31:56Z\",\n \"recertificationAfter\": \"2023-11-07T05:31:56Z\",\n \"recertificationBefore\": \"2023-11-07T05:31:56Z\",\n \"onboardedAfter\": \"2023-11-07T05:31:56Z\",\n \"onboardedBefore\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedAfter\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedBefore\": \"2023-11-07T05:31:56Z\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.visotrust.com/api/v1/relationships/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"domains\": [\n \"<string>\"\n ],\n \"name\": \"<string>\",\n \"externalId\": \"<string>\",\n \"statuses\": [\n \"<string>\"\n ],\n \"assessmentStatuses\": [\n \"<string>\"\n ],\n \"riskAcceptanceStatuses\": [\n \"<string>\"\n ],\n \"residualRiskLevels\": [\n \"<string>\"\n ],\n \"inherentRiskLevels\": [\n \"<string>\"\n ],\n \"minScore\": 123,\n \"maxScore\": 123,\n \"businessUnitIds\": [\n 123\n ],\n \"vendorTierIds\": [\n 123\n ],\n \"businessOwnerIds\": [\n 123\n ],\n \"creatorIds\": [\n 123\n ],\n \"primaryContactIds\": [\n 123\n ],\n \"tags\": [\n \"<string>\"\n ],\n \"createdAfter\": \"2023-11-07T05:31:56Z\",\n \"createdBefore\": \"2023-11-07T05:31:56Z\",\n \"recertificationAfter\": \"2023-11-07T05:31:56Z\",\n \"recertificationBefore\": \"2023-11-07T05:31:56Z\",\n \"onboardedAfter\": \"2023-11-07T05:31:56Z\",\n \"onboardedBefore\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedAfter\": \"2023-11-07T05:31:56Z\",\n \"assessmentCompletedBefore\": \"2023-11-07T05:31:56Z\"\n}"
response = http.request(request)
puts response.read_body[
{
"name": "<string>",
"id": 123,
"homepage": "<string>",
"description": "<string>",
"businessUnit": "<string>",
"createdDate": "2023-11-07T05:31:56Z",
"updatedDate": "2023-11-07T05:31:56Z",
"recertificationDate": "2023-11-07T05:31:56Z",
"inherentRiskScore": 123,
"residualRiskScore": 123,
"isTransitional": true,
"contextTypes": [
{
"name": "<string>"
}
],
"dataTypes": [
{
"name": "<string>"
}
],
"businessOwner": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"businessUnit": "<string>"
},
"assessmentLead": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"businessUnit": "<string>"
},
"subscribers": [
{
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"businessUnit": "<string>"
}
],
"primaryContact": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>"
},
"tags": [
"<string>"
],
"tier": "<string>",
"complianceStandards": [],
"latestAssessment": {
"id": 123,
"sentToEmail": "<string>",
"createdDate": "2023-11-07T05:31:56Z",
"summary": "<string>",
"expirationDate": "2023-11-07T05:31:56Z",
"completedDate": "2023-11-07T05:31:56Z",
"requestedAuditTypes": [
"<string>"
],
"aiProcessingOnly": true,
"sentToFirstName": "<string>",
"sentToLastName": "<string>",
"assessmentType": "<string>",
"statusHistories": [
{
"date": "2023-11-07T05:31:56Z"
}
],
"recommendations": [
{
"description": "<string>",
"createdDate": "2023-11-07T05:31:56Z"
}
],
"updatedDate": "2023-11-07T05:31:56Z",
"phaseDate": "2023-11-07T05:31:56Z",
"sentBy": {
"email": "<string>",
"firstName": "<string>",
"lastName": "<string>",
"businessUnit": "<string>"
},
"requestedArtifactCollection": true
},
"externalId": "<string>",
"productId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"productName": "<string>",
"dimensionCoverage": [
{
"dimension": "<string>",
"inScope": true,
"coverage": "<string>",
"coveragePercentage": "<string>"
}
]
}
]Body
application/json
Response
200 - application/json
OK
Available options:
ARCHIVED, NOT_ONBOARDED, ONBOARDED, PURGED Available options:
NO_CONTEXT, LOW, MEDIUM, HIGH, EXTREME Available options:
NO_CONTEXT, LOW, MEDIUM, HIGH, EXTREME Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Available options:
MANUAL, AUTOMATIC, NONE Show child attributes
Show child attributes
Show child attributes
Show child attributes
Available options:
C5, CCPA, CSA_STAR, CSA_LEVEL2, FEDRAMP, GDPR, GLBA, HIPAA, HITRUST, ISO27001, ISO27017, ISO27018, ISO27701, ISO21434, ISO22301, ISO42001, ISOIEC_2700127002, ISOIEC_2701727002, ISOIEC_2701827002, PCIDSS, PRIVACY_SHIELD, SOC1, SOC2, SOC3, TISAXREPORTLEVEL3 Show child attributes
Show child attributes
Available options:
RISK_ACCEPTED, REVIEW_NEEDED, REMEDIATION_REQUESTED Show child attributes
Show child attributes
⌘I