Trust Validation Result PDF Download
curl --request GET \
--url https://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}', 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://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body"<string>"Processes
Trust Validation Result PDF Download PDF Download
Download a PDF report containing all verification results for a trust validation session.
GET
/
api
/
v1
/
verification
/
verification-pdf
/
{trustValidationId}
Trust Validation Result PDF Download
curl --request GET \
--url https://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}', 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://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://{environment-subdomain}.idmetagroup.com/api/v1/verification/verification-pdf/{trustValidationId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body"<string>"This endpoint returns a PDF file, not JSON. In Try it, set Accept to
application/pdf, enter your trustValidationId and Bearer token, then click Send. When the request succeeds, use the Download button in the response panel to save the PDF.Authorizations
Use Bearer {your_api_token} in the Authorization header.
Headers
Request a PDF file download.
Path Parameters
Trust validation ID for the session. Use the trustValidationId returned from create trust validation.
Response
200 - application/pdf
Verification summary PDF downloaded successfully
PDF report containing all verification results for the trust validation session.

