Override Media Search Comment
curl --request POST \
--url https://api.taidalos.com/v1/media-search-summaries/override-summary \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data @- <<EOF
{
"data": {
"media_search_id": "123e4567-e89b-12d3-a456-426614174000",
"risk_categories": [
"Money Laundering",
"Sanctions",
"Human Rights Abuse"
],
"risky": true,
"summary": " - Jan Marsalek is a central figure in the Wirecard scandal, one of Germany's largest financial frauds, involving €1.9 billion in non-existent assets. /n - He is accused of fraud, false accounting, embezzlement, and operating a shadow empire alongside Wirecard's official operations. /n - Marsalek allegedly used third-party companies to siphon funds from banks and investors, and engaged in money laundering activities, particularly in the Philippines and Singapore."
}
}
EOFimport requests
url = "https://api.taidalos.com/v1/media-search-summaries/override-summary"
payload = { "data": {
"media_search_id": "123e4567-e89b-12d3-a456-426614174000",
"risk_categories": ["Money Laundering", "Sanctions", "Human Rights Abuse"],
"risky": True,
"summary": " - Jan Marsalek is a central figure in the Wirecard scandal, one of Germany's largest financial frauds, involving €1.9 billion in non-existent assets. /n - He is accused of fraud, false accounting, embezzlement, and operating a shadow empire alongside Wirecard's official operations. /n - Marsalek allegedly used third-party companies to siphon funds from banks and investors, and engaged in money laundering activities, particularly in the Philippines and Singapore."
} }
headers = {
"Authorization": "<authorization>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<authorization>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
media_search_id: '123e4567-e89b-12d3-a456-426614174000',
risk_categories: ['Money Laundering', 'Sanctions', 'Human Rights Abuse'],
risky: true,
summary: ' - Jan Marsalek is a central figure in the Wirecard scandal, one of Germany\'s largest financial frauds, involving €1.9 billion in non-existent assets. /n - He is accused of fraud, false accounting, embezzlement, and operating a shadow empire alongside Wirecard\'s official operations. /n - Marsalek allegedly used third-party companies to siphon funds from banks and investors, and engaged in money laundering activities, particularly in the Philippines and Singapore.'
}
})
};
fetch('https://api.taidalos.com/v1/media-search-summaries/override-summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api.taidalos.com/v1/media-search-summaries/override-summary")
.header("Authorization", "<authorization>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"media_search_id\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"risk_categories\": [\n \"Money Laundering\",\n \"Sanctions\",\n \"Human Rights Abuse\"\n ],\n \"risky\": true,\n \"summary\": \" - Jan Marsalek is a central figure in the Wirecard scandal, one of Germany's largest financial frauds, involving €1.9 billion in non-existent assets. /n - He is accused of fraud, false accounting, embezzlement, and operating a shadow empire alongside Wirecard's official operations. /n - Marsalek allegedly used third-party companies to siphon funds from banks and investors, and engaged in money laundering activities, particularly in the Philippines and Singapore.\"\n }\n}")
.asString();package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.taidalos.com/v1/media-search-summaries/override-summary"
payload := strings.NewReader("{\n \"data\": {\n \"media_search_id\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"risk_categories\": [\n \"Money Laundering\",\n \"Sanctions\",\n \"Human Rights Abuse\"\n ],\n \"risky\": true,\n \"summary\": \" - Jan Marsalek is a central figure in the Wirecard scandal, one of Germany's largest financial frauds, involving €1.9 billion in non-existent assets. /n - He is accused of fraud, false accounting, embezzlement, and operating a shadow empire alongside Wirecard's official operations. /n - Marsalek allegedly used third-party companies to siphon funds from banks and investors, and engaged in money laundering activities, particularly in the Philippines and Singapore.\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<authorization>")
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))
}{
"data": {
"media_search_summary_id": "123e4567-e89b-12d3-a456-426614174000"
}
}{
"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}"
}Media Searches
Override Summary
POST
/
v1
/
media-search-summaries
/
override-summary
Override Media Search Comment
curl --request POST \
--url https://api.taidalos.com/v1/media-search-summaries/override-summary \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data @- <<EOF
{
"data": {
"media_search_id": "123e4567-e89b-12d3-a456-426614174000",
"risk_categories": [
"Money Laundering",
"Sanctions",
"Human Rights Abuse"
],
"risky": true,
"summary": " - Jan Marsalek is a central figure in the Wirecard scandal, one of Germany's largest financial frauds, involving €1.9 billion in non-existent assets. /n - He is accused of fraud, false accounting, embezzlement, and operating a shadow empire alongside Wirecard's official operations. /n - Marsalek allegedly used third-party companies to siphon funds from banks and investors, and engaged in money laundering activities, particularly in the Philippines and Singapore."
}
}
EOFimport requests
url = "https://api.taidalos.com/v1/media-search-summaries/override-summary"
payload = { "data": {
"media_search_id": "123e4567-e89b-12d3-a456-426614174000",
"risk_categories": ["Money Laundering", "Sanctions", "Human Rights Abuse"],
"risky": True,
"summary": " - Jan Marsalek is a central figure in the Wirecard scandal, one of Germany's largest financial frauds, involving €1.9 billion in non-existent assets. /n - He is accused of fraud, false accounting, embezzlement, and operating a shadow empire alongside Wirecard's official operations. /n - Marsalek allegedly used third-party companies to siphon funds from banks and investors, and engaged in money laundering activities, particularly in the Philippines and Singapore."
} }
headers = {
"Authorization": "<authorization>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<authorization>', 'Content-Type': 'application/json'},
body: JSON.stringify({
data: {
media_search_id: '123e4567-e89b-12d3-a456-426614174000',
risk_categories: ['Money Laundering', 'Sanctions', 'Human Rights Abuse'],
risky: true,
summary: ' - Jan Marsalek is a central figure in the Wirecard scandal, one of Germany\'s largest financial frauds, involving €1.9 billion in non-existent assets. /n - He is accused of fraud, false accounting, embezzlement, and operating a shadow empire alongside Wirecard\'s official operations. /n - Marsalek allegedly used third-party companies to siphon funds from banks and investors, and engaged in money laundering activities, particularly in the Philippines and Singapore.'
}
})
};
fetch('https://api.taidalos.com/v1/media-search-summaries/override-summary', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));HttpResponse<String> response = Unirest.post("https://api.taidalos.com/v1/media-search-summaries/override-summary")
.header("Authorization", "<authorization>")
.header("Content-Type", "application/json")
.body("{\n \"data\": {\n \"media_search_id\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"risk_categories\": [\n \"Money Laundering\",\n \"Sanctions\",\n \"Human Rights Abuse\"\n ],\n \"risky\": true,\n \"summary\": \" - Jan Marsalek is a central figure in the Wirecard scandal, one of Germany's largest financial frauds, involving €1.9 billion in non-existent assets. /n - He is accused of fraud, false accounting, embezzlement, and operating a shadow empire alongside Wirecard's official operations. /n - Marsalek allegedly used third-party companies to siphon funds from banks and investors, and engaged in money laundering activities, particularly in the Philippines and Singapore.\"\n }\n}")
.asString();package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.taidalos.com/v1/media-search-summaries/override-summary"
payload := strings.NewReader("{\n \"data\": {\n \"media_search_id\": \"123e4567-e89b-12d3-a456-426614174000\",\n \"risk_categories\": [\n \"Money Laundering\",\n \"Sanctions\",\n \"Human Rights Abuse\"\n ],\n \"risky\": true,\n \"summary\": \" - Jan Marsalek is a central figure in the Wirecard scandal, one of Germany's largest financial frauds, involving €1.9 billion in non-existent assets. /n - He is accused of fraud, false accounting, embezzlement, and operating a shadow empire alongside Wirecard's official operations. /n - Marsalek allegedly used third-party companies to siphon funds from banks and investors, and engaged in money laundering activities, particularly in the Philippines and Singapore.\"\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<authorization>")
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))
}{
"data": {
"media_search_summary_id": "123e4567-e89b-12d3-a456-426614174000"
}
}{
"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}"
}Headers
Body
application/json
request body
data contains the media search summary details and risk assessment information for the override request.
Show child attributes
Show child attributes
Response
Created
data contains details specific to the override media search summary response.
Show child attributes
Show child attributes
⌘I
