Get Sanctions, PEPs, and Watchlists Sources for an Execution
curl --request GET \
--url https://api.taidalos.com/v1/sanctions-peps-watchlists-checks/sources/{sanction_pep_watchlist_execution_id} \
--header 'Authorization: <authorization>'import requests
url = "https://api.taidalos.com/v1/sanctions-peps-watchlists-checks/sources/{sanction_pep_watchlist_execution_id}"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.taidalos.com/v1/sanctions-peps-watchlists-checks/sources/{sanction_pep_watchlist_execution_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://api.taidalos.com/v1/sanctions-peps-watchlists-checks/sources/{sanction_pep_watchlist_execution_id}")
.header("Authorization", "<authorization>")
.asString();package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.taidalos.com/v1/sanctions-peps-watchlists-checks/sources/{sanction_pep_watchlist_execution_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"datasets": [
{
"name": "<string>",
"summary": "<string>",
"tags": [
{
"category": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"updated_at": "<string>",
"url": "<string>"
}
],
"sources_id": "<string>"
}
}{
"context": {
"method": "{method}",
"path": "{path}",
"timestamp": "<string>"
},
"details": "Details explaining the error",
"instance": "/org/{org_id}/user/{user_id}/request-id/{request_id}",
"title": "Error ShortName",
"type": "https://errors.taidalos.com/common/{error-type}"
}Sanction, PeP, and Watchlist
Get Sources for Execution
GET
/
v1
/
sanctions-peps-watchlists-checks
/
sources
/
{sanction_pep_watchlist_execution_id}
Get Sanctions, PEPs, and Watchlists Sources for an Execution
curl --request GET \
--url https://api.taidalos.com/v1/sanctions-peps-watchlists-checks/sources/{sanction_pep_watchlist_execution_id} \
--header 'Authorization: <authorization>'import requests
url = "https://api.taidalos.com/v1/sanctions-peps-watchlists-checks/sources/{sanction_pep_watchlist_execution_id}"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://api.taidalos.com/v1/sanctions-peps-watchlists-checks/sources/{sanction_pep_watchlist_execution_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.get("https://api.taidalos.com/v1/sanctions-peps-watchlists-checks/sources/{sanction_pep_watchlist_execution_id}")
.header("Authorization", "<authorization>")
.asString();package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.taidalos.com/v1/sanctions-peps-watchlists-checks/sources/{sanction_pep_watchlist_execution_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"data": {
"datasets": [
{
"name": "<string>",
"summary": "<string>",
"tags": [
{
"category": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"updated_at": "<string>",
"url": "<string>"
}
],
"sources_id": "<string>"
}
}{
"context": {
"method": "{method}",
"path": "{path}",
"timestamp": "<string>"
},
"details": "Details explaining the error",
"instance": "/org/{org_id}/user/{user_id}/request-id/{request_id}",
"title": "Error ShortName",
"type": "https://errors.taidalos.com/common/{error-type}"
}⌘I
