curl --request POST \
--url https://api.balansas.com/functions/v1/customer-api/end-users \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"firstName": "<string>",
"lastName": "<string>",
"email": "[email protected]",
"dob": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"postalCode": "<string>",
"country": "<string>",
"line2": "<string>",
"state": "<string>"
},
"middleName": "<string>",
"phone": "<string>",
"birthCountry": "<string>",
"nationality": "<string>",
"ipAddress": "<string>",
"tags": [
"<string>"
],
"signupAt": "2023-11-07T05:31:56Z",
"metadata": {},
"linkedCryptoWallets": [
{
"coin": "<string>",
"walletAddress": "<string>",
"relationship": []
}
],
"umbrellaLinkId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"onboarding_url_token": "<string>",
"kycReportBase64": "<string>",
"kycReportFilename": "<string>",
"sumsubReportBase64": "<string>",
"sumsubReportFilename": "<string>"
}
'import requests
url = "https://api.balansas.com/functions/v1/customer-api/end-users"
payload = {
"firstName": "<string>",
"lastName": "<string>",
"email": "[email protected]",
"dob": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"postalCode": "<string>",
"country": "<string>",
"line2": "<string>",
"state": "<string>"
},
"middleName": "<string>",
"phone": "<string>",
"birthCountry": "<string>",
"nationality": "<string>",
"ipAddress": "<string>",
"tags": ["<string>"],
"signupAt": "2023-11-07T05:31:56Z",
"metadata": {},
"linkedCryptoWallets": [
{
"coin": "<string>",
"walletAddress": "<string>",
"relationship": []
}
],
"umbrellaLinkId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"onboarding_url_token": "<string>",
"kycReportBase64": "<string>",
"kycReportFilename": "<string>",
"sumsubReportBase64": "<string>",
"sumsubReportFilename": "<string>"
}
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({
firstName: '<string>',
lastName: '<string>',
email: '[email protected]',
dob: '<string>',
address: {
line1: '<string>',
city: '<string>',
postalCode: '<string>',
country: '<string>',
line2: '<string>',
state: '<string>'
},
middleName: '<string>',
phone: '<string>',
birthCountry: '<string>',
nationality: '<string>',
ipAddress: '<string>',
tags: ['<string>'],
signupAt: '2023-11-07T05:31:56Z',
metadata: {},
linkedCryptoWallets: [{coin: '<string>', walletAddress: '<string>', relationship: []}],
umbrellaLinkId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
onboarding_url_token: '<string>',
kycReportBase64: '<string>',
kycReportFilename: '<string>',
sumsubReportBase64: '<string>',
sumsubReportFilename: '<string>'
})
};
fetch('https://api.balansas.com/functions/v1/customer-api/end-users', 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.balansas.com/functions/v1/customer-api/end-users",
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([
'firstName' => '<string>',
'lastName' => '<string>',
'email' => '[email protected]',
'dob' => '<string>',
'address' => [
'line1' => '<string>',
'city' => '<string>',
'postalCode' => '<string>',
'country' => '<string>',
'line2' => '<string>',
'state' => '<string>'
],
'middleName' => '<string>',
'phone' => '<string>',
'birthCountry' => '<string>',
'nationality' => '<string>',
'ipAddress' => '<string>',
'tags' => [
'<string>'
],
'signupAt' => '2023-11-07T05:31:56Z',
'metadata' => [
],
'linkedCryptoWallets' => [
[
'coin' => '<string>',
'walletAddress' => '<string>',
'relationship' => [
]
]
],
'umbrellaLinkId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'onboarding_url_token' => '<string>',
'kycReportBase64' => '<string>',
'kycReportFilename' => '<string>',
'sumsubReportBase64' => '<string>',
'sumsubReportFilename' => '<string>'
]),
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://api.balansas.com/functions/v1/customer-api/end-users"
payload := strings.NewReader("{\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"email\": \"[email protected]\",\n \"dob\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"country\": \"<string>\",\n \"line2\": \"<string>\",\n \"state\": \"<string>\"\n },\n \"middleName\": \"<string>\",\n \"phone\": \"<string>\",\n \"birthCountry\": \"<string>\",\n \"nationality\": \"<string>\",\n \"ipAddress\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"signupAt\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {},\n \"linkedCryptoWallets\": [\n {\n \"coin\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"relationship\": []\n }\n ],\n \"umbrellaLinkId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"onboarding_url_token\": \"<string>\",\n \"kycReportBase64\": \"<string>\",\n \"kycReportFilename\": \"<string>\",\n \"sumsubReportBase64\": \"<string>\",\n \"sumsubReportFilename\": \"<string>\"\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://api.balansas.com/functions/v1/customer-api/end-users")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"email\": \"[email protected]\",\n \"dob\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"country\": \"<string>\",\n \"line2\": \"<string>\",\n \"state\": \"<string>\"\n },\n \"middleName\": \"<string>\",\n \"phone\": \"<string>\",\n \"birthCountry\": \"<string>\",\n \"nationality\": \"<string>\",\n \"ipAddress\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"signupAt\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {},\n \"linkedCryptoWallets\": [\n {\n \"coin\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"relationship\": []\n }\n ],\n \"umbrellaLinkId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"onboarding_url_token\": \"<string>\",\n \"kycReportBase64\": \"<string>\",\n \"kycReportFilename\": \"<string>\",\n \"sumsubReportBase64\": \"<string>\",\n \"sumsubReportFilename\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.balansas.com/functions/v1/customer-api/end-users")
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 \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"email\": \"[email protected]\",\n \"dob\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"country\": \"<string>\",\n \"line2\": \"<string>\",\n \"state\": \"<string>\"\n },\n \"middleName\": \"<string>\",\n \"phone\": \"<string>\",\n \"birthCountry\": \"<string>\",\n \"nationality\": \"<string>\",\n \"ipAddress\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"signupAt\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {},\n \"linkedCryptoWallets\": [\n {\n \"coin\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"relationship\": []\n }\n ],\n \"umbrellaLinkId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"onboarding_url_token\": \"<string>\",\n \"kycReportBase64\": \"<string>\",\n \"kycReportFilename\": \"<string>\",\n \"sumsubReportBase64\": \"<string>\",\n \"sumsubReportFilename\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "9e2b1c34-5d6e-4f70-8a91-2b3c4d5e6f70",
"fr_end_user_id": "eu_5Lk9Pm",
"end_user_type": "INDIVIDUAL",
"first_name": "Maria",
"middle_name": "Elena",
"last_name": "Rossi",
"company_name": "Helix Trading Ltd",
"email": "[email protected]",
"reference_code": "EU-GWG2HS32",
"status": "pending_verification",
"fr_owner_business_id": "busi_8Jh2KdLm5Qx",
"registration_number": "12345678",
"registration_date": "2019-06-15",
"business_type": "LIMITED_COMPANY",
"incorporation_country": "IE",
"sector": "OTHER_PRODUCTS_SERVICES",
"risk_tier": "low_risk",
"verification_completed_at": "2026-05-21T08:00:00.000Z",
"disclosure_accepted_at": "2026-05-23T10:05:00.000Z",
"disclosure_version": "ppa-v1.2-2026-05-23",
"reverse_solicitation": {
"required": true,
"accepted": false
},
"created_at": "2026-05-28T11:02:09.456Z",
"updated_at": "2026-05-28T11:02:09.456Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Create an individual end user (KYC)
There are two creation modes, depending on your agreement with Balansas. Direct mode (default) — omit umbrellaLinkId: the end user is created immediately at the banking partner under your own business; use this when you operate your own regulated setup. PPA Mode — include umbrellaLinkId (only available if you have a Platform Partner Agreement): the end user is provisioned under a Balansas-managed master business with status: pending_verification, and you then obtain a hosted KYC/KYB link (or submit a pre-completed report via verificationMethod: pdf_upload). If you do not have a PPA, ignore umbrellaLinkId and every PPA-specific field.
curl --request POST \
--url https://api.balansas.com/functions/v1/customer-api/end-users \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"firstName": "<string>",
"lastName": "<string>",
"email": "[email protected]",
"dob": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"postalCode": "<string>",
"country": "<string>",
"line2": "<string>",
"state": "<string>"
},
"middleName": "<string>",
"phone": "<string>",
"birthCountry": "<string>",
"nationality": "<string>",
"ipAddress": "<string>",
"tags": [
"<string>"
],
"signupAt": "2023-11-07T05:31:56Z",
"metadata": {},
"linkedCryptoWallets": [
{
"coin": "<string>",
"walletAddress": "<string>",
"relationship": []
}
],
"umbrellaLinkId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"onboarding_url_token": "<string>",
"kycReportBase64": "<string>",
"kycReportFilename": "<string>",
"sumsubReportBase64": "<string>",
"sumsubReportFilename": "<string>"
}
'import requests
url = "https://api.balansas.com/functions/v1/customer-api/end-users"
payload = {
"firstName": "<string>",
"lastName": "<string>",
"email": "[email protected]",
"dob": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"postalCode": "<string>",
"country": "<string>",
"line2": "<string>",
"state": "<string>"
},
"middleName": "<string>",
"phone": "<string>",
"birthCountry": "<string>",
"nationality": "<string>",
"ipAddress": "<string>",
"tags": ["<string>"],
"signupAt": "2023-11-07T05:31:56Z",
"metadata": {},
"linkedCryptoWallets": [
{
"coin": "<string>",
"walletAddress": "<string>",
"relationship": []
}
],
"umbrellaLinkId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"onboarding_url_token": "<string>",
"kycReportBase64": "<string>",
"kycReportFilename": "<string>",
"sumsubReportBase64": "<string>",
"sumsubReportFilename": "<string>"
}
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({
firstName: '<string>',
lastName: '<string>',
email: '[email protected]',
dob: '<string>',
address: {
line1: '<string>',
city: '<string>',
postalCode: '<string>',
country: '<string>',
line2: '<string>',
state: '<string>'
},
middleName: '<string>',
phone: '<string>',
birthCountry: '<string>',
nationality: '<string>',
ipAddress: '<string>',
tags: ['<string>'],
signupAt: '2023-11-07T05:31:56Z',
metadata: {},
linkedCryptoWallets: [{coin: '<string>', walletAddress: '<string>', relationship: []}],
umbrellaLinkId: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
onboarding_url_token: '<string>',
kycReportBase64: '<string>',
kycReportFilename: '<string>',
sumsubReportBase64: '<string>',
sumsubReportFilename: '<string>'
})
};
fetch('https://api.balansas.com/functions/v1/customer-api/end-users', 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.balansas.com/functions/v1/customer-api/end-users",
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([
'firstName' => '<string>',
'lastName' => '<string>',
'email' => '[email protected]',
'dob' => '<string>',
'address' => [
'line1' => '<string>',
'city' => '<string>',
'postalCode' => '<string>',
'country' => '<string>',
'line2' => '<string>',
'state' => '<string>'
],
'middleName' => '<string>',
'phone' => '<string>',
'birthCountry' => '<string>',
'nationality' => '<string>',
'ipAddress' => '<string>',
'tags' => [
'<string>'
],
'signupAt' => '2023-11-07T05:31:56Z',
'metadata' => [
],
'linkedCryptoWallets' => [
[
'coin' => '<string>',
'walletAddress' => '<string>',
'relationship' => [
]
]
],
'umbrellaLinkId' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'onboarding_url_token' => '<string>',
'kycReportBase64' => '<string>',
'kycReportFilename' => '<string>',
'sumsubReportBase64' => '<string>',
'sumsubReportFilename' => '<string>'
]),
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://api.balansas.com/functions/v1/customer-api/end-users"
payload := strings.NewReader("{\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"email\": \"[email protected]\",\n \"dob\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"country\": \"<string>\",\n \"line2\": \"<string>\",\n \"state\": \"<string>\"\n },\n \"middleName\": \"<string>\",\n \"phone\": \"<string>\",\n \"birthCountry\": \"<string>\",\n \"nationality\": \"<string>\",\n \"ipAddress\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"signupAt\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {},\n \"linkedCryptoWallets\": [\n {\n \"coin\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"relationship\": []\n }\n ],\n \"umbrellaLinkId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"onboarding_url_token\": \"<string>\",\n \"kycReportBase64\": \"<string>\",\n \"kycReportFilename\": \"<string>\",\n \"sumsubReportBase64\": \"<string>\",\n \"sumsubReportFilename\": \"<string>\"\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://api.balansas.com/functions/v1/customer-api/end-users")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"email\": \"[email protected]\",\n \"dob\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"country\": \"<string>\",\n \"line2\": \"<string>\",\n \"state\": \"<string>\"\n },\n \"middleName\": \"<string>\",\n \"phone\": \"<string>\",\n \"birthCountry\": \"<string>\",\n \"nationality\": \"<string>\",\n \"ipAddress\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"signupAt\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {},\n \"linkedCryptoWallets\": [\n {\n \"coin\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"relationship\": []\n }\n ],\n \"umbrellaLinkId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"onboarding_url_token\": \"<string>\",\n \"kycReportBase64\": \"<string>\",\n \"kycReportFilename\": \"<string>\",\n \"sumsubReportBase64\": \"<string>\",\n \"sumsubReportFilename\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.balansas.com/functions/v1/customer-api/end-users")
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 \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"email\": \"[email protected]\",\n \"dob\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"country\": \"<string>\",\n \"line2\": \"<string>\",\n \"state\": \"<string>\"\n },\n \"middleName\": \"<string>\",\n \"phone\": \"<string>\",\n \"birthCountry\": \"<string>\",\n \"nationality\": \"<string>\",\n \"ipAddress\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"signupAt\": \"2023-11-07T05:31:56Z\",\n \"metadata\": {},\n \"linkedCryptoWallets\": [\n {\n \"coin\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"relationship\": []\n }\n ],\n \"umbrellaLinkId\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"onboarding_url_token\": \"<string>\",\n \"kycReportBase64\": \"<string>\",\n \"kycReportFilename\": \"<string>\",\n \"sumsubReportBase64\": \"<string>\",\n \"sumsubReportFilename\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"id": "9e2b1c34-5d6e-4f70-8a91-2b3c4d5e6f70",
"fr_end_user_id": "eu_5Lk9Pm",
"end_user_type": "INDIVIDUAL",
"first_name": "Maria",
"middle_name": "Elena",
"last_name": "Rossi",
"company_name": "Helix Trading Ltd",
"email": "[email protected]",
"reference_code": "EU-GWG2HS32",
"status": "pending_verification",
"fr_owner_business_id": "busi_8Jh2KdLm5Qx",
"registration_number": "12345678",
"registration_date": "2019-06-15",
"business_type": "LIMITED_COMPANY",
"incorporation_country": "IE",
"sector": "OTHER_PRODUCTS_SERVICES",
"risk_tier": "low_risk",
"verification_completed_at": "2026-05-21T08:00:00.000Z",
"disclosure_accepted_at": "2026-05-23T10:05:00.000Z",
"disclosure_version": "ppa-v1.2-2026-05-23",
"reverse_solicitation": {
"required": true,
"accepted": false
},
"created_at": "2026-05-28T11:02:09.456Z",
"updated_at": "2026-05-28T11:02:09.456Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Authorizations
Customer API key. Send as x-api-key: sk_... or Authorization: Bearer sk_.... Write operations also require an X-CSRF-Token header (64-char hex).
Body
1 - 1001 - 100255^\d{4}-\d{2}-\d{2}$Show child attributes
Show child attributes
1002022Show child attributes
Show child attributes
45RANGE_0_TO_25000, RANGE_25000_TO_50000, RANGE_50000_TO_100000, RANGE_100000_TO_150000, ABOVE_150000 201 - 100LOW, MEDIUM, HIGH Show child attributes
Show child attributes
50Show child attributes
Show child attributes
1 - 100Show child attributes
Show child attributes
hosted_kyc, pdf_upload, sumsub_websdk 1 - 146800642551 - 14680064255Response
Success
Show child attributes
Show child attributes

