curl --request POST \
--url https://api.qa.nlbs.ai/api/reports \
--header 'Content-Type: application/json' \
--data '
{
"analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"operation": {
"abroad_indicator": false,
"additional_info": "<string>",
"batch_number": "<string>",
"communicant_document": "<string>",
"communicant_name": "<string>",
"currency": "BRL",
"decision_at": "2023-11-07T05:31:56Z",
"detection_at": "2023-11-07T05:31:56Z",
"environment": "HOMOLOGACAO",
"fact_at": "2023-11-07T05:31:56Z",
"involved": [
{
"document": "<string>",
"name": "<string>",
"involvement_type": "<string>",
"pep": true
}
],
"layout_version": "1.0",
"occurrence_code": "<string>",
"occurrence_description": "<string>",
"operation_value": 1,
"origin_number": "<string>",
"payment_channel": "<string>",
"product": "<string>",
"refund_value": 1,
"related_operations": [
{
"reference": "<string>",
"description": "<string>",
"occurred_at": "2023-11-07T05:31:56Z",
"operation_type": "<string>",
"value": 1
}
]
},
"source": "frontend"
}
'import requests
url = "https://api.qa.nlbs.ai/api/reports"
payload = {
"analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"operation": {
"abroad_indicator": False,
"additional_info": "<string>",
"batch_number": "<string>",
"communicant_document": "<string>",
"communicant_name": "<string>",
"currency": "BRL",
"decision_at": "2023-11-07T05:31:56Z",
"detection_at": "2023-11-07T05:31:56Z",
"environment": "HOMOLOGACAO",
"fact_at": "2023-11-07T05:31:56Z",
"involved": [
{
"document": "<string>",
"name": "<string>",
"involvement_type": "<string>",
"pep": True
}
],
"layout_version": "1.0",
"occurrence_code": "<string>",
"occurrence_description": "<string>",
"operation_value": 1,
"origin_number": "<string>",
"payment_channel": "<string>",
"product": "<string>",
"refund_value": 1,
"related_operations": [
{
"reference": "<string>",
"description": "<string>",
"occurred_at": "2023-11-07T05:31:56Z",
"operation_type": "<string>",
"value": 1
}
]
},
"source": "frontend"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
analysis_uuid: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
operation: {
abroad_indicator: false,
additional_info: '<string>',
batch_number: '<string>',
communicant_document: '<string>',
communicant_name: '<string>',
currency: 'BRL',
decision_at: '2023-11-07T05:31:56Z',
detection_at: '2023-11-07T05:31:56Z',
environment: 'HOMOLOGACAO',
fact_at: '2023-11-07T05:31:56Z',
involved: [
{
document: '<string>',
name: '<string>',
involvement_type: '<string>',
pep: true
}
],
layout_version: '1.0',
occurrence_code: '<string>',
occurrence_description: '<string>',
operation_value: 1,
origin_number: '<string>',
payment_channel: '<string>',
product: '<string>',
refund_value: 1,
related_operations: [
{
reference: '<string>',
description: '<string>',
occurred_at: '2023-11-07T05:31:56Z',
operation_type: '<string>',
value: 1
}
]
},
source: 'frontend'
})
};
fetch('https://api.qa.nlbs.ai/api/reports', 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://api.qa.nlbs.ai/api/reports",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'analysis_uuid' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'operation' => [
'abroad_indicator' => false,
'additional_info' => '<string>',
'batch_number' => '<string>',
'communicant_document' => '<string>',
'communicant_name' => '<string>',
'currency' => 'BRL',
'decision_at' => '2023-11-07T05:31:56Z',
'detection_at' => '2023-11-07T05:31:56Z',
'environment' => 'HOMOLOGACAO',
'fact_at' => '2023-11-07T05:31:56Z',
'involved' => [
[
'document' => '<string>',
'name' => '<string>',
'involvement_type' => '<string>',
'pep' => true
]
],
'layout_version' => '1.0',
'occurrence_code' => '<string>',
'occurrence_description' => '<string>',
'operation_value' => 1,
'origin_number' => '<string>',
'payment_channel' => '<string>',
'product' => '<string>',
'refund_value' => 1,
'related_operations' => [
[
'reference' => '<string>',
'description' => '<string>',
'occurred_at' => '2023-11-07T05:31:56Z',
'operation_type' => '<string>',
'value' => 1
]
]
],
'source' => 'frontend'
]),
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://api.qa.nlbs.ai/api/reports"
payload := strings.NewReader("{\n \"analysis_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"operation\": {\n \"abroad_indicator\": false,\n \"additional_info\": \"<string>\",\n \"batch_number\": \"<string>\",\n \"communicant_document\": \"<string>\",\n \"communicant_name\": \"<string>\",\n \"currency\": \"BRL\",\n \"decision_at\": \"2023-11-07T05:31:56Z\",\n \"detection_at\": \"2023-11-07T05:31:56Z\",\n \"environment\": \"HOMOLOGACAO\",\n \"fact_at\": \"2023-11-07T05:31:56Z\",\n \"involved\": [\n {\n \"document\": \"<string>\",\n \"name\": \"<string>\",\n \"involvement_type\": \"<string>\",\n \"pep\": true\n }\n ],\n \"layout_version\": \"1.0\",\n \"occurrence_code\": \"<string>\",\n \"occurrence_description\": \"<string>\",\n \"operation_value\": 1,\n \"origin_number\": \"<string>\",\n \"payment_channel\": \"<string>\",\n \"product\": \"<string>\",\n \"refund_value\": 1,\n \"related_operations\": [\n {\n \"reference\": \"<string>\",\n \"description\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"operation_type\": \"<string>\",\n \"value\": 1\n }\n ]\n },\n \"source\": \"frontend\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.qa.nlbs.ai/api/reports")
.header("Content-Type", "application/json")
.body("{\n \"analysis_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"operation\": {\n \"abroad_indicator\": false,\n \"additional_info\": \"<string>\",\n \"batch_number\": \"<string>\",\n \"communicant_document\": \"<string>\",\n \"communicant_name\": \"<string>\",\n \"currency\": \"BRL\",\n \"decision_at\": \"2023-11-07T05:31:56Z\",\n \"detection_at\": \"2023-11-07T05:31:56Z\",\n \"environment\": \"HOMOLOGACAO\",\n \"fact_at\": \"2023-11-07T05:31:56Z\",\n \"involved\": [\n {\n \"document\": \"<string>\",\n \"name\": \"<string>\",\n \"involvement_type\": \"<string>\",\n \"pep\": true\n }\n ],\n \"layout_version\": \"1.0\",\n \"occurrence_code\": \"<string>\",\n \"occurrence_description\": \"<string>\",\n \"operation_value\": 1,\n \"origin_number\": \"<string>\",\n \"payment_channel\": \"<string>\",\n \"product\": \"<string>\",\n \"refund_value\": 1,\n \"related_operations\": [\n {\n \"reference\": \"<string>\",\n \"description\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"operation_type\": \"<string>\",\n \"value\": 1\n }\n ]\n },\n \"source\": \"frontend\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qa.nlbs.ai/api/reports")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"analysis_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"operation\": {\n \"abroad_indicator\": false,\n \"additional_info\": \"<string>\",\n \"batch_number\": \"<string>\",\n \"communicant_document\": \"<string>\",\n \"communicant_name\": \"<string>\",\n \"currency\": \"BRL\",\n \"decision_at\": \"2023-11-07T05:31:56Z\",\n \"detection_at\": \"2023-11-07T05:31:56Z\",\n \"environment\": \"HOMOLOGACAO\",\n \"fact_at\": \"2023-11-07T05:31:56Z\",\n \"involved\": [\n {\n \"document\": \"<string>\",\n \"name\": \"<string>\",\n \"involvement_type\": \"<string>\",\n \"pep\": true\n }\n ],\n \"layout_version\": \"1.0\",\n \"occurrence_code\": \"<string>\",\n \"occurrence_description\": \"<string>\",\n \"operation_value\": 1,\n \"origin_number\": \"<string>\",\n \"payment_channel\": \"<string>\",\n \"product\": \"<string>\",\n \"refund_value\": 1,\n \"related_operations\": [\n {\n \"reference\": \"<string>\",\n \"description\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"operation_type\": \"<string>\",\n \"value\": 1\n }\n ]\n },\n \"source\": \"frontend\"\n}"
response = http.request(request)
puts response.read_body{
"analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"result": {
"audit_trail": "<string>",
"consolidated_risk_signals": "<string>",
"counterparty_identification": "<string>",
"ownership_and_ubo": "<string>",
"source_analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"versions": {
"regulatory_catalog_version": "<string>",
"report_workflow_version": "<string>",
"model": "<string>",
"narrative_prompt_version": "<string>",
"source_analysis_workflow_version": "<string>"
},
"coaf_communication_draft": "<string>",
"coaf_xml": {
"available": true,
"format": "<string>",
"byte_size": 1,
"content_type": "application/xml",
"filename": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"storage_bucket": "<string>",
"storage_key": "<string>",
"storage_uri": "<string>"
},
"enquadramento_suggestion": "<string>",
"legal_basis": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"pdf": {
"available": true,
"byte_size": 1,
"content_type": "application/pdf",
"filename": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"storage_bucket": "<string>",
"storage_key": "<string>",
"storage_uri": "<string>"
}
},
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}Create regulatory report
Run the Motor 2 regulatory report workflow synchronously from a completed analysis and return the full report. Per COAF rule, the source analysis must have been created within the last 24 hours.
curl --request POST \
--url https://api.qa.nlbs.ai/api/reports \
--header 'Content-Type: application/json' \
--data '
{
"analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"operation": {
"abroad_indicator": false,
"additional_info": "<string>",
"batch_number": "<string>",
"communicant_document": "<string>",
"communicant_name": "<string>",
"currency": "BRL",
"decision_at": "2023-11-07T05:31:56Z",
"detection_at": "2023-11-07T05:31:56Z",
"environment": "HOMOLOGACAO",
"fact_at": "2023-11-07T05:31:56Z",
"involved": [
{
"document": "<string>",
"name": "<string>",
"involvement_type": "<string>",
"pep": true
}
],
"layout_version": "1.0",
"occurrence_code": "<string>",
"occurrence_description": "<string>",
"operation_value": 1,
"origin_number": "<string>",
"payment_channel": "<string>",
"product": "<string>",
"refund_value": 1,
"related_operations": [
{
"reference": "<string>",
"description": "<string>",
"occurred_at": "2023-11-07T05:31:56Z",
"operation_type": "<string>",
"value": 1
}
]
},
"source": "frontend"
}
'import requests
url = "https://api.qa.nlbs.ai/api/reports"
payload = {
"analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"operation": {
"abroad_indicator": False,
"additional_info": "<string>",
"batch_number": "<string>",
"communicant_document": "<string>",
"communicant_name": "<string>",
"currency": "BRL",
"decision_at": "2023-11-07T05:31:56Z",
"detection_at": "2023-11-07T05:31:56Z",
"environment": "HOMOLOGACAO",
"fact_at": "2023-11-07T05:31:56Z",
"involved": [
{
"document": "<string>",
"name": "<string>",
"involvement_type": "<string>",
"pep": True
}
],
"layout_version": "1.0",
"occurrence_code": "<string>",
"occurrence_description": "<string>",
"operation_value": 1,
"origin_number": "<string>",
"payment_channel": "<string>",
"product": "<string>",
"refund_value": 1,
"related_operations": [
{
"reference": "<string>",
"description": "<string>",
"occurred_at": "2023-11-07T05:31:56Z",
"operation_type": "<string>",
"value": 1
}
]
},
"source": "frontend"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
analysis_uuid: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
operation: {
abroad_indicator: false,
additional_info: '<string>',
batch_number: '<string>',
communicant_document: '<string>',
communicant_name: '<string>',
currency: 'BRL',
decision_at: '2023-11-07T05:31:56Z',
detection_at: '2023-11-07T05:31:56Z',
environment: 'HOMOLOGACAO',
fact_at: '2023-11-07T05:31:56Z',
involved: [
{
document: '<string>',
name: '<string>',
involvement_type: '<string>',
pep: true
}
],
layout_version: '1.0',
occurrence_code: '<string>',
occurrence_description: '<string>',
operation_value: 1,
origin_number: '<string>',
payment_channel: '<string>',
product: '<string>',
refund_value: 1,
related_operations: [
{
reference: '<string>',
description: '<string>',
occurred_at: '2023-11-07T05:31:56Z',
operation_type: '<string>',
value: 1
}
]
},
source: 'frontend'
})
};
fetch('https://api.qa.nlbs.ai/api/reports', 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://api.qa.nlbs.ai/api/reports",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'analysis_uuid' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'operation' => [
'abroad_indicator' => false,
'additional_info' => '<string>',
'batch_number' => '<string>',
'communicant_document' => '<string>',
'communicant_name' => '<string>',
'currency' => 'BRL',
'decision_at' => '2023-11-07T05:31:56Z',
'detection_at' => '2023-11-07T05:31:56Z',
'environment' => 'HOMOLOGACAO',
'fact_at' => '2023-11-07T05:31:56Z',
'involved' => [
[
'document' => '<string>',
'name' => '<string>',
'involvement_type' => '<string>',
'pep' => true
]
],
'layout_version' => '1.0',
'occurrence_code' => '<string>',
'occurrence_description' => '<string>',
'operation_value' => 1,
'origin_number' => '<string>',
'payment_channel' => '<string>',
'product' => '<string>',
'refund_value' => 1,
'related_operations' => [
[
'reference' => '<string>',
'description' => '<string>',
'occurred_at' => '2023-11-07T05:31:56Z',
'operation_type' => '<string>',
'value' => 1
]
]
],
'source' => 'frontend'
]),
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://api.qa.nlbs.ai/api/reports"
payload := strings.NewReader("{\n \"analysis_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"operation\": {\n \"abroad_indicator\": false,\n \"additional_info\": \"<string>\",\n \"batch_number\": \"<string>\",\n \"communicant_document\": \"<string>\",\n \"communicant_name\": \"<string>\",\n \"currency\": \"BRL\",\n \"decision_at\": \"2023-11-07T05:31:56Z\",\n \"detection_at\": \"2023-11-07T05:31:56Z\",\n \"environment\": \"HOMOLOGACAO\",\n \"fact_at\": \"2023-11-07T05:31:56Z\",\n \"involved\": [\n {\n \"document\": \"<string>\",\n \"name\": \"<string>\",\n \"involvement_type\": \"<string>\",\n \"pep\": true\n }\n ],\n \"layout_version\": \"1.0\",\n \"occurrence_code\": \"<string>\",\n \"occurrence_description\": \"<string>\",\n \"operation_value\": 1,\n \"origin_number\": \"<string>\",\n \"payment_channel\": \"<string>\",\n \"product\": \"<string>\",\n \"refund_value\": 1,\n \"related_operations\": [\n {\n \"reference\": \"<string>\",\n \"description\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"operation_type\": \"<string>\",\n \"value\": 1\n }\n ]\n },\n \"source\": \"frontend\"\n}")
req, _ := http.NewRequest("POST", 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.post("https://api.qa.nlbs.ai/api/reports")
.header("Content-Type", "application/json")
.body("{\n \"analysis_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"operation\": {\n \"abroad_indicator\": false,\n \"additional_info\": \"<string>\",\n \"batch_number\": \"<string>\",\n \"communicant_document\": \"<string>\",\n \"communicant_name\": \"<string>\",\n \"currency\": \"BRL\",\n \"decision_at\": \"2023-11-07T05:31:56Z\",\n \"detection_at\": \"2023-11-07T05:31:56Z\",\n \"environment\": \"HOMOLOGACAO\",\n \"fact_at\": \"2023-11-07T05:31:56Z\",\n \"involved\": [\n {\n \"document\": \"<string>\",\n \"name\": \"<string>\",\n \"involvement_type\": \"<string>\",\n \"pep\": true\n }\n ],\n \"layout_version\": \"1.0\",\n \"occurrence_code\": \"<string>\",\n \"occurrence_description\": \"<string>\",\n \"operation_value\": 1,\n \"origin_number\": \"<string>\",\n \"payment_channel\": \"<string>\",\n \"product\": \"<string>\",\n \"refund_value\": 1,\n \"related_operations\": [\n {\n \"reference\": \"<string>\",\n \"description\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"operation_type\": \"<string>\",\n \"value\": 1\n }\n ]\n },\n \"source\": \"frontend\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.qa.nlbs.ai/api/reports")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"analysis_uuid\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"operation\": {\n \"abroad_indicator\": false,\n \"additional_info\": \"<string>\",\n \"batch_number\": \"<string>\",\n \"communicant_document\": \"<string>\",\n \"communicant_name\": \"<string>\",\n \"currency\": \"BRL\",\n \"decision_at\": \"2023-11-07T05:31:56Z\",\n \"detection_at\": \"2023-11-07T05:31:56Z\",\n \"environment\": \"HOMOLOGACAO\",\n \"fact_at\": \"2023-11-07T05:31:56Z\",\n \"involved\": [\n {\n \"document\": \"<string>\",\n \"name\": \"<string>\",\n \"involvement_type\": \"<string>\",\n \"pep\": true\n }\n ],\n \"layout_version\": \"1.0\",\n \"occurrence_code\": \"<string>\",\n \"occurrence_description\": \"<string>\",\n \"operation_value\": 1,\n \"origin_number\": \"<string>\",\n \"payment_channel\": \"<string>\",\n \"product\": \"<string>\",\n \"refund_value\": 1,\n \"related_operations\": [\n {\n \"reference\": \"<string>\",\n \"description\": \"<string>\",\n \"occurred_at\": \"2023-11-07T05:31:56Z\",\n \"operation_type\": \"<string>\",\n \"value\": 1\n }\n ]\n },\n \"source\": \"frontend\"\n}"
response = http.request(request)
puts response.read_body{
"analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"result": {
"audit_trail": "<string>",
"consolidated_risk_signals": "<string>",
"counterparty_identification": "<string>",
"ownership_and_ubo": "<string>",
"source_analysis_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"versions": {
"regulatory_catalog_version": "<string>",
"report_workflow_version": "<string>",
"model": "<string>",
"narrative_prompt_version": "<string>",
"source_analysis_workflow_version": "<string>"
},
"coaf_communication_draft": "<string>",
"coaf_xml": {
"available": true,
"format": "<string>",
"byte_size": 1,
"content_type": "application/xml",
"filename": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"storage_bucket": "<string>",
"storage_key": "<string>",
"storage_uri": "<string>"
},
"enquadramento_suggestion": "<string>",
"legal_basis": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"pdf": {
"available": true,
"byte_size": 1,
"content_type": "application/pdf",
"filename": "<string>",
"limitations": [
{
"code": "<string>",
"message": "<string>",
"details": {},
"entity_id": 1
}
],
"storage_bucket": "<string>",
"storage_key": "<string>",
"storage_uri": "<string>"
}
},
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}{
"detail": "<string>"
}Body
Source analysis UUID to build the report from.
Institution type selecting the sector norm (banco=BCB, seguradora=SUSEP).
banco, seguradora Optional COAF/COS filing data the analysis does not carry (reporting institution, transactional values, occurrence code, involved parties, related operations). When provided, the generated XML is complete; otherwise it is produced partially from analysis data.
Show child attributes
Show child attributes
Optional caller-defined source label.
128"frontend"
Response
Successful Response
Complete regulatory report returned by POST and GET /reports/{uuid}.
A synchronously-returned report is always COMPLETED; failures do not persist, so the
queue-lifecycle fields (status/error/timestamps) are dropped. result carries the XML/PDF
storage references (bucket/key/uri) — artifacts live in MinIO, not inline in the response.
