curl -X POST 'https://verification.didit.me/v3/organization/11111111-2222-3333-4444-555555555555/application/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/cases/blueprints/' \
-H 'x-api-key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"name": "AML investigation", "assignee_pool": ["9a000000-0000-4000-8000-0000000000aa"], "assignment_method": "AUTOMATIC", "max_active_cases": 15, "require_resolution_note": true, "content_config": {"aml_control": {"enabled": true, "financial": true, "identity": false}}}'import requests
url = "https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/"
payload = {
"name": "<string>",
"assignee_pool": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"description": "<string>",
"assignment_method": "MANUAL",
"max_active_cases": 2,
"escalation_enabled": False,
"escalation_blueprint": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"transfer_enabled": False,
"four_eyes_checker_blueprint": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"require_resolution_note": False,
"content_config": {
"checklist": {
"enabled": True,
"optional": True,
"items": [
{
"label": "<string>",
"order": 123
}
]
},
"aml_control": {
"enabled": True,
"financial": True,
"identity": True
},
"identity": {
"enabled": True,
"personal_information": True,
"applicant_tags": True,
"contact_information": True,
"risk_overview": True,
"poi_documents": True,
"poa_documents": True
},
"verifications": {
"enabled": True,
"summary": True
},
"reporting": {
"enabled": True,
"fiu_reports": True
},
"financial": {
"enabled": True,
"payment_methods": True,
"transactions": True
}
},
"is_active": True
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
assignee_pool: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
description: '<string>',
assignment_method: 'MANUAL',
max_active_cases: 2,
escalation_enabled: false,
escalation_blueprint: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
transfer_enabled: false,
four_eyes_checker_blueprint: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
require_resolution_note: false,
content_config: {
checklist: {enabled: true, optional: true, items: [{label: '<string>', order: 123}]},
aml_control: {enabled: true, financial: true, identity: true},
identity: {
enabled: true,
personal_information: true,
applicant_tags: true,
contact_information: true,
risk_overview: true,
poi_documents: true,
poa_documents: true
},
verifications: {enabled: true, summary: true},
reporting: {enabled: true, fiu_reports: true},
financial: {enabled: true, payment_methods: true, transactions: true}
},
is_active: true
})
};
fetch('https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/', 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://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/",
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([
'name' => '<string>',
'assignee_pool' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'description' => '<string>',
'assignment_method' => 'MANUAL',
'max_active_cases' => 2,
'escalation_enabled' => false,
'escalation_blueprint' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'transfer_enabled' => false,
'four_eyes_checker_blueprint' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'require_resolution_note' => false,
'content_config' => [
'checklist' => [
'enabled' => true,
'optional' => true,
'items' => [
[
'label' => '<string>',
'order' => 123
]
]
],
'aml_control' => [
'enabled' => true,
'financial' => true,
'identity' => true
],
'identity' => [
'enabled' => true,
'personal_information' => true,
'applicant_tags' => true,
'contact_information' => true,
'risk_overview' => true,
'poi_documents' => true,
'poa_documents' => true
],
'verifications' => [
'enabled' => true,
'summary' => true
],
'reporting' => [
'enabled' => true,
'fiu_reports' => true
],
'financial' => [
'enabled' => true,
'payment_methods' => true,
'transactions' => true
]
],
'is_active' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$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://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"assignee_pool\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"description\": \"<string>\",\n \"assignment_method\": \"MANUAL\",\n \"max_active_cases\": 2,\n \"escalation_enabled\": false,\n \"escalation_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"transfer_enabled\": false,\n \"four_eyes_checker_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"require_resolution_note\": false,\n \"content_config\": {\n \"checklist\": {\n \"enabled\": true,\n \"optional\": true,\n \"items\": [\n {\n \"label\": \"<string>\",\n \"order\": 123\n }\n ]\n },\n \"aml_control\": {\n \"enabled\": true,\n \"financial\": true,\n \"identity\": true\n },\n \"identity\": {\n \"enabled\": true,\n \"personal_information\": true,\n \"applicant_tags\": true,\n \"contact_information\": true,\n \"risk_overview\": true,\n \"poi_documents\": true,\n \"poa_documents\": true\n },\n \"verifications\": {\n \"enabled\": true,\n \"summary\": true\n },\n \"reporting\": {\n \"enabled\": true,\n \"fiu_reports\": true\n },\n \"financial\": {\n \"enabled\": true,\n \"payment_methods\": true,\n \"transactions\": true\n }\n },\n \"is_active\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
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://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"assignee_pool\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"description\": \"<string>\",\n \"assignment_method\": \"MANUAL\",\n \"max_active_cases\": 2,\n \"escalation_enabled\": false,\n \"escalation_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"transfer_enabled\": false,\n \"four_eyes_checker_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"require_resolution_note\": false,\n \"content_config\": {\n \"checklist\": {\n \"enabled\": true,\n \"optional\": true,\n \"items\": [\n {\n \"label\": \"<string>\",\n \"order\": 123\n }\n ]\n },\n \"aml_control\": {\n \"enabled\": true,\n \"financial\": true,\n \"identity\": true\n },\n \"identity\": {\n \"enabled\": true,\n \"personal_information\": true,\n \"applicant_tags\": true,\n \"contact_information\": true,\n \"risk_overview\": true,\n \"poi_documents\": true,\n \"poa_documents\": true\n },\n \"verifications\": {\n \"enabled\": true,\n \"summary\": true\n },\n \"reporting\": {\n \"enabled\": true,\n \"fiu_reports\": true\n },\n \"financial\": {\n \"enabled\": true,\n \"payment_methods\": true,\n \"transactions\": true\n }\n },\n \"is_active\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"assignee_pool\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"description\": \"<string>\",\n \"assignment_method\": \"MANUAL\",\n \"max_active_cases\": 2,\n \"escalation_enabled\": false,\n \"escalation_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"transfer_enabled\": false,\n \"four_eyes_checker_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"require_resolution_note\": false,\n \"content_config\": {\n \"checklist\": {\n \"enabled\": true,\n \"optional\": true,\n \"items\": [\n {\n \"label\": \"<string>\",\n \"order\": 123\n }\n ]\n },\n \"aml_control\": {\n \"enabled\": true,\n \"financial\": true,\n \"identity\": true\n },\n \"identity\": {\n \"enabled\": true,\n \"personal_information\": true,\n \"applicant_tags\": true,\n \"contact_information\": true,\n \"risk_overview\": true,\n \"poi_documents\": true,\n \"poa_documents\": true\n },\n \"verifications\": {\n \"enabled\": true,\n \"summary\": true\n },\n \"reporting\": {\n \"enabled\": true,\n \"fiu_reports\": true\n },\n \"financial\": {\n \"enabled\": true,\n \"payment_methods\": true,\n \"transactions\": true\n }\n },\n \"is_active\": true\n}"
response = http.request(request)
puts response.read_body{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"assignee_pool": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"max_active_cases": 123,
"escalation_enabled": true,
"transfer_enabled": true,
"require_resolution_note": true,
"is_active": true,
"preset_key": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"escalation_blueprint": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"escalation_blueprint_name": "<string>",
"four_eyes_checker_blueprint": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"four_eyes_checker_blueprint_name": "<string>",
"content_config": {
"checklist": {
"enabled": true,
"optional": true,
"items": [
{
"label": "<string>",
"order": 123
}
]
},
"aml_control": {
"enabled": true,
"financial": true,
"identity": true
},
"identity": {
"enabled": true,
"personal_information": true,
"applicant_tags": true,
"contact_information": true,
"risk_overview": true,
"poi_documents": true,
"poa_documents": true
},
"verifications": {
"enabled": true,
"summary": true
},
"reporting": {
"enabled": true,
"fiu_reports": true
},
"financial": {
"enabled": true,
"payment_methods": true,
"transactions": true
}
},
"creation_sources": [
{
"id": "<string>",
"name": "<string>"
}
],
"receives_escalation_from": [
{
"id": "<string>",
"name": "<string>"
}
],
"updated_at": "2023-11-07T05:31:56Z"
}{}Create Case Blueprint
Create a case blueprint: general settings (assignment, escalation, transfer, 4-eyes pairing) plus content_config, the six sections that drive the case page.
curl -X POST 'https://verification.didit.me/v3/organization/11111111-2222-3333-4444-555555555555/application/aaaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee/cases/blueprints/' \
-H 'x-api-key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{"name": "AML investigation", "assignee_pool": ["9a000000-0000-4000-8000-0000000000aa"], "assignment_method": "AUTOMATIC", "max_active_cases": 15, "require_resolution_note": true, "content_config": {"aml_control": {"enabled": true, "financial": true, "identity": false}}}'import requests
url = "https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/"
payload = {
"name": "<string>",
"assignee_pool": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"description": "<string>",
"assignment_method": "MANUAL",
"max_active_cases": 2,
"escalation_enabled": False,
"escalation_blueprint": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"transfer_enabled": False,
"four_eyes_checker_blueprint": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"require_resolution_note": False,
"content_config": {
"checklist": {
"enabled": True,
"optional": True,
"items": [
{
"label": "<string>",
"order": 123
}
]
},
"aml_control": {
"enabled": True,
"financial": True,
"identity": True
},
"identity": {
"enabled": True,
"personal_information": True,
"applicant_tags": True,
"contact_information": True,
"risk_overview": True,
"poi_documents": True,
"poa_documents": True
},
"verifications": {
"enabled": True,
"summary": True
},
"reporting": {
"enabled": True,
"fiu_reports": True
},
"financial": {
"enabled": True,
"payment_methods": True,
"transactions": True
}
},
"is_active": True
}
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
assignee_pool: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
description: '<string>',
assignment_method: 'MANUAL',
max_active_cases: 2,
escalation_enabled: false,
escalation_blueprint: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
transfer_enabled: false,
four_eyes_checker_blueprint: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
require_resolution_note: false,
content_config: {
checklist: {enabled: true, optional: true, items: [{label: '<string>', order: 123}]},
aml_control: {enabled: true, financial: true, identity: true},
identity: {
enabled: true,
personal_information: true,
applicant_tags: true,
contact_information: true,
risk_overview: true,
poi_documents: true,
poa_documents: true
},
verifications: {enabled: true, summary: true},
reporting: {enabled: true, fiu_reports: true},
financial: {enabled: true, payment_methods: true, transactions: true}
},
is_active: true
})
};
fetch('https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/', 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://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/",
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([
'name' => '<string>',
'assignee_pool' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'description' => '<string>',
'assignment_method' => 'MANUAL',
'max_active_cases' => 2,
'escalation_enabled' => false,
'escalation_blueprint' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'transfer_enabled' => false,
'four_eyes_checker_blueprint' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'require_resolution_note' => false,
'content_config' => [
'checklist' => [
'enabled' => true,
'optional' => true,
'items' => [
[
'label' => '<string>',
'order' => 123
]
]
],
'aml_control' => [
'enabled' => true,
'financial' => true,
'identity' => true
],
'identity' => [
'enabled' => true,
'personal_information' => true,
'applicant_tags' => true,
'contact_information' => true,
'risk_overview' => true,
'poi_documents' => true,
'poa_documents' => true
],
'verifications' => [
'enabled' => true,
'summary' => true
],
'reporting' => [
'enabled' => true,
'fiu_reports' => true
],
'financial' => [
'enabled' => true,
'payment_methods' => true,
'transactions' => true
]
],
'is_active' => true
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-api-key: <api-key>"
],
]);
$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://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"assignee_pool\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"description\": \"<string>\",\n \"assignment_method\": \"MANUAL\",\n \"max_active_cases\": 2,\n \"escalation_enabled\": false,\n \"escalation_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"transfer_enabled\": false,\n \"four_eyes_checker_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"require_resolution_note\": false,\n \"content_config\": {\n \"checklist\": {\n \"enabled\": true,\n \"optional\": true,\n \"items\": [\n {\n \"label\": \"<string>\",\n \"order\": 123\n }\n ]\n },\n \"aml_control\": {\n \"enabled\": true,\n \"financial\": true,\n \"identity\": true\n },\n \"identity\": {\n \"enabled\": true,\n \"personal_information\": true,\n \"applicant_tags\": true,\n \"contact_information\": true,\n \"risk_overview\": true,\n \"poi_documents\": true,\n \"poa_documents\": true\n },\n \"verifications\": {\n \"enabled\": true,\n \"summary\": true\n },\n \"reporting\": {\n \"enabled\": true,\n \"fiu_reports\": true\n },\n \"financial\": {\n \"enabled\": true,\n \"payment_methods\": true,\n \"transactions\": true\n }\n },\n \"is_active\": true\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<api-key>")
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://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"assignee_pool\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"description\": \"<string>\",\n \"assignment_method\": \"MANUAL\",\n \"max_active_cases\": 2,\n \"escalation_enabled\": false,\n \"escalation_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"transfer_enabled\": false,\n \"four_eyes_checker_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"require_resolution_note\": false,\n \"content_config\": {\n \"checklist\": {\n \"enabled\": true,\n \"optional\": true,\n \"items\": [\n {\n \"label\": \"<string>\",\n \"order\": 123\n }\n ]\n },\n \"aml_control\": {\n \"enabled\": true,\n \"financial\": true,\n \"identity\": true\n },\n \"identity\": {\n \"enabled\": true,\n \"personal_information\": true,\n \"applicant_tags\": true,\n \"contact_information\": true,\n \"risk_overview\": true,\n \"poi_documents\": true,\n \"poa_documents\": true\n },\n \"verifications\": {\n \"enabled\": true,\n \"summary\": true\n },\n \"reporting\": {\n \"enabled\": true,\n \"fiu_reports\": true\n },\n \"financial\": {\n \"enabled\": true,\n \"payment_methods\": true,\n \"transactions\": true\n }\n },\n \"is_active\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://verification.didit.me/v3/organization/{organization_id}/application/{application_id}/cases/blueprints/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"assignee_pool\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"description\": \"<string>\",\n \"assignment_method\": \"MANUAL\",\n \"max_active_cases\": 2,\n \"escalation_enabled\": false,\n \"escalation_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"transfer_enabled\": false,\n \"four_eyes_checker_blueprint\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"require_resolution_note\": false,\n \"content_config\": {\n \"checklist\": {\n \"enabled\": true,\n \"optional\": true,\n \"items\": [\n {\n \"label\": \"<string>\",\n \"order\": 123\n }\n ]\n },\n \"aml_control\": {\n \"enabled\": true,\n \"financial\": true,\n \"identity\": true\n },\n \"identity\": {\n \"enabled\": true,\n \"personal_information\": true,\n \"applicant_tags\": true,\n \"contact_information\": true,\n \"risk_overview\": true,\n \"poi_documents\": true,\n \"poa_documents\": true\n },\n \"verifications\": {\n \"enabled\": true,\n \"summary\": true\n },\n \"reporting\": {\n \"enabled\": true,\n \"fiu_reports\": true\n },\n \"financial\": {\n \"enabled\": true,\n \"payment_methods\": true,\n \"transactions\": true\n }\n },\n \"is_active\": true\n}"
response = http.request(request)
puts response.read_body{
"uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"description": "<string>",
"assignee_pool": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"max_active_cases": 123,
"escalation_enabled": true,
"transfer_enabled": true,
"require_resolution_note": true,
"is_active": true,
"preset_key": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"escalation_blueprint": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"escalation_blueprint_name": "<string>",
"four_eyes_checker_blueprint": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"four_eyes_checker_blueprint_name": "<string>",
"content_config": {
"checklist": {
"enabled": true,
"optional": true,
"items": [
{
"label": "<string>",
"order": 123
}
]
},
"aml_control": {
"enabled": true,
"financial": true,
"identity": true
},
"identity": {
"enabled": true,
"personal_information": true,
"applicant_tags": true,
"contact_information": true,
"risk_overview": true,
"poi_documents": true,
"poa_documents": true
},
"verifications": {
"enabled": true,
"summary": true
},
"reporting": {
"enabled": true,
"fiu_reports": true
},
"financial": {
"enabled": true,
"payment_methods": true,
"transactions": true
}
},
"creation_sources": [
{
"id": "<string>",
"name": "<string>"
}
],
"receives_escalation_from": [
{
"id": "<string>",
"name": "<string>"
}
],
"updated_at": "2023-11-07T05:31:56Z"
}{}content_config is validated strictly - only the six known sections and their documented keys are accepted, so a typo returns a 400 rather than silently being ignored.
Related
Authorizations
Path Parameters
Organization UUID.
Application UUID.
Body
Max 24 characters, e.g. "AML investigation".
24List of User UUIDs. Empty arrays are rejected with "Pick at least one assignee".
1MANUAL, AUTOMATIC Automatic-mode threshold: "fewer than N cases of this blueprint assigned".
x >= 1Target blueprint UUID. Not enforced at save time, but the escalate action fails with 400 until both escalation_enabled and escalation_blueprint are set.
Setting this enables 4-eyes review: resolutions on this blueprint stage on the checker blueprint's queue.
The six togglable sections that drive which tabs and fields appear on the case page. Unknown sections or keys are rejected.
Show child attributes
Show child attributes
Response
Blueprint created.
24MANUAL, AUTOMATIC The six togglable sections that drive which tabs and fields appear on the case page. Unknown sections or keys are rejected.
Show child attributes
Show child attributes
Connectors currently routing new cases into this blueprint.
Show child attributes
Show child attributes
Other blueprints whose Escalation target points at this one.
Show child attributes
Show child attributes