Submit a User's Business Check
curl --request POST \
--url https://api-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'payload={
"business_data": {
"business_address": {
"city": "San Francisco",
"country": "US",
"line1": "500 Terry Francois Blvd",
"postal_code": "94158",
"state": "CA"
},
"business_email": "ops@lovelace.example.com",
"business_phone": "+14155550199",
"business_type": "llc",
"dba": "Lovelace Analytics",
"formation_date": "2021-04-12",
"ownership": [
{
"name": "Ada Lovelace",
"ownership_pct": 100,
"role": "founder"
}
],
"website": "https://lovelace.example.com"
},
"business_ein": "12-3456789",
"business_legal_name": "Lovelace Analytics LLC"
}' \
--form 'files=<string>' \
--form files.items='@example-file'import requests
url = "https://api-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}"
files = { "files.items": ("example-file", open("example-file", "rb")) }
payload = {
"payload": "{
\"business_data\": {
\"business_address\": {
\"city\": \"San Francisco\",
\"country\": \"US\",
\"line1\": \"500 Terry Francois Blvd\",
\"postal_code\": \"94158\",
\"state\": \"CA\"
},
\"business_email\": \"ops@lovelace.example.com\",
\"business_phone\": \"+14155550199\",
\"business_type\": \"llc\",
\"dba\": \"Lovelace Analytics\",
\"formation_date\": \"2021-04-12\",
\"ownership\": [
{
\"name\": \"Ada Lovelace\",
\"ownership_pct\": 100,
\"role\": \"founder\"
}
],
\"website\": \"https://lovelace.example.com\"
},
\"business_ein\": \"12-3456789\",
\"business_legal_name\": \"Lovelace Analytics LLC\"
}",
"files": "<string>"
}
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, data=payload, files=files, headers=headers)
print(response.text)const form = new FormData();
form.append('payload', '{
"business_data": {
"business_address": {
"city": "San Francisco",
"country": "US",
"line1": "500 Terry Francois Blvd",
"postal_code": "94158",
"state": "CA"
},
"business_email": "ops@lovelace.example.com",
"business_phone": "+14155550199",
"business_type": "llc",
"dba": "Lovelace Analytics",
"formation_date": "2021-04-12",
"ownership": [
{
"name": "Ada Lovelace",
"ownership_pct": 100,
"role": "founder"
}
],
"website": "https://lovelace.example.com"
},
"business_ein": "12-3456789",
"business_legal_name": "Lovelace Analytics LLC"
}');
form.append('files', '<string>');
form.append('files.items', '{
"fileName": "example-file"
}');
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
options.body = form;
fetch('https://api-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}', 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-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"payload\"\r\n\r\n{\r\n \"business_data\": {\r\n \"business_address\": {\r\n \"city\": \"San Francisco\",\r\n \"country\": \"US\",\r\n \"line1\": \"500 Terry Francois Blvd\",\r\n \"postal_code\": \"94158\",\r\n \"state\": \"CA\"\r\n },\r\n \"business_email\": \"ops@lovelace.example.com\",\r\n \"business_phone\": \"+14155550199\",\r\n \"business_type\": \"llc\",\r\n \"dba\": \"Lovelace Analytics\",\r\n \"formation_date\": \"2021-04-12\",\r\n \"ownership\": [\r\n {\r\n \"name\": \"Ada Lovelace\",\r\n \"ownership_pct\": 100,\r\n \"role\": \"founder\"\r\n }\r\n ],\r\n \"website\": \"https://lovelace.example.com\"\r\n },\r\n \"business_ein\": \"12-3456789\",\r\n \"business_legal_name\": \"Lovelace Analytics LLC\"\r\n}\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files\"\r\n\r\n<string>\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files.items\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n{\r\n \"fileName\": \"example-file\"\r\n}\r\n-----011000010111000001101001--",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: multipart/form-data"
],
]);
$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-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}"
payload := strings.NewReader("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"payload\"\r\n\r\n{\r\n \"business_data\": {\r\n \"business_address\": {\r\n \"city\": \"San Francisco\",\r\n \"country\": \"US\",\r\n \"line1\": \"500 Terry Francois Blvd\",\r\n \"postal_code\": \"94158\",\r\n \"state\": \"CA\"\r\n },\r\n \"business_email\": \"ops@lovelace.example.com\",\r\n \"business_phone\": \"+14155550199\",\r\n \"business_type\": \"llc\",\r\n \"dba\": \"Lovelace Analytics\",\r\n \"formation_date\": \"2021-04-12\",\r\n \"ownership\": [\r\n {\r\n \"name\": \"Ada Lovelace\",\r\n \"ownership_pct\": 100,\r\n \"role\": \"founder\"\r\n }\r\n ],\r\n \"website\": \"https://lovelace.example.com\"\r\n },\r\n \"business_ein\": \"12-3456789\",\r\n \"business_legal_name\": \"Lovelace Analytics LLC\"\r\n}\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files\"\r\n\r\n<string>\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files.items\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n{\r\n \"fileName\": \"example-file\"\r\n}\r\n-----011000010111000001101001--")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}")
.header("Authorization", "Bearer <token>")
.body("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"payload\"\r\n\r\n{\r\n \"business_data\": {\r\n \"business_address\": {\r\n \"city\": \"San Francisco\",\r\n \"country\": \"US\",\r\n \"line1\": \"500 Terry Francois Blvd\",\r\n \"postal_code\": \"94158\",\r\n \"state\": \"CA\"\r\n },\r\n \"business_email\": \"ops@lovelace.example.com\",\r\n \"business_phone\": \"+14155550199\",\r\n \"business_type\": \"llc\",\r\n \"dba\": \"Lovelace Analytics\",\r\n \"formation_date\": \"2021-04-12\",\r\n \"ownership\": [\r\n {\r\n \"name\": \"Ada Lovelace\",\r\n \"ownership_pct\": 100,\r\n \"role\": \"founder\"\r\n }\r\n ],\r\n \"website\": \"https://lovelace.example.com\"\r\n },\r\n \"business_ein\": \"12-3456789\",\r\n \"business_legal_name\": \"Lovelace Analytics LLC\"\r\n}\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files\"\r\n\r\n<string>\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files.items\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n{\r\n \"fileName\": \"example-file\"\r\n}\r\n-----011000010111000001101001--")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request.body = "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"payload\"\r\n\r\n{\r\n \"business_data\": {\r\n \"business_address\": {\r\n \"city\": \"San Francisco\",\r\n \"country\": \"US\",\r\n \"line1\": \"500 Terry Francois Blvd\",\r\n \"postal_code\": \"94158\",\r\n \"state\": \"CA\"\r\n },\r\n \"business_email\": \"ops@lovelace.example.com\",\r\n \"business_phone\": \"+14155550199\",\r\n \"business_type\": \"llc\",\r\n \"dba\": \"Lovelace Analytics\",\r\n \"formation_date\": \"2021-04-12\",\r\n \"ownership\": [\r\n {\r\n \"name\": \"Ada Lovelace\",\r\n \"ownership_pct\": 100,\r\n \"role\": \"founder\"\r\n }\r\n ],\r\n \"website\": \"https://lovelace.example.com\"\r\n },\r\n \"business_ein\": \"12-3456789\",\r\n \"business_legal_name\": \"Lovelace Analytics LLC\"\r\n}\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files\"\r\n\r\n<string>\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files.items\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n{\r\n \"fileName\": \"example-file\"\r\n}\r\n-----011000010111000001101001--"
response = http.request(request)
puts response.read_body{
"status_code": 123,
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"approved_at": "2023-11-07T05:31:56Z",
"rejected_at": "2023-11-07T05:31:56Z",
"decline_reason": "<string>",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subject_email": "<string>",
"subject_name": "<string>",
"business_legal_name": "<string>",
"business_ein": "<string>",
"business_type": "<string>",
"dba": "<string>",
"website": "<string>",
"registration_number": "<string>",
"formation_date": "<string>",
"mcc": "<string>",
"business_description": "<string>",
"business_email": "<string>",
"business_phone": "<string>",
"phone_country_code": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zip": "<string>",
"contact_first_name": "<string>",
"contact_last_name": "<string>",
"contact_email": "<string>",
"business_documents": [
"<string>"
],
"ownership": [
{
"name": "<string>",
"role": "<string>",
"ownership_pct": 50
}
]
},
"query_generated_time": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Create User KYB Record
Submit business verification (KYB) details for one user. You can also attach supporting documents as files along with the details.
The payload field is a JSON object with this shape:
business_legal_name(string, required) — the official registered name of the business.business_ein(string, optional) — the business’s US federal tax ID (EIN).business_data(object, optional) — structured business details:business_type,dba,website,registration_number,formation_date,mcc,business_descriptionbusiness_email,business_phone,phone_country_code— business contact detailscontact_first_name,contact_last_name,contact_email— the contact personbusiness_address(object) —line1,city,state,postal_code,countryownership(array) — the beneficial owners, each{ name, role, ownership_pct }
Any field not listed above is still accepted and stored.
Example payload:
{
"business_legal_name": "Lovelace Analytics LLC",
"business_ein": "12-3456789",
"business_data": {
"business_type": "llc",
"dba": "Lovelace Analytics",
"website": "https://lovelace.example.com",
"business_address": {
"line1": "500 Terry Francois Blvd",
"city": "San Francisco",
"state": "CA",
"postal_code": "94158",
"country": "US"
},
"ownership": [
{ "name": "Ada Lovelace", "role": "founder", "ownership_pct": 100 }
]
}
}
POST
/
v1
/
platform
/
users
/
kyb
/
start
/
{user_id}
Submit a User's Business Check
curl --request POST \
--url https://api-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form 'payload={
"business_data": {
"business_address": {
"city": "San Francisco",
"country": "US",
"line1": "500 Terry Francois Blvd",
"postal_code": "94158",
"state": "CA"
},
"business_email": "ops@lovelace.example.com",
"business_phone": "+14155550199",
"business_type": "llc",
"dba": "Lovelace Analytics",
"formation_date": "2021-04-12",
"ownership": [
{
"name": "Ada Lovelace",
"ownership_pct": 100,
"role": "founder"
}
],
"website": "https://lovelace.example.com"
},
"business_ein": "12-3456789",
"business_legal_name": "Lovelace Analytics LLC"
}' \
--form 'files=<string>' \
--form files.items='@example-file'import requests
url = "https://api-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}"
files = { "files.items": ("example-file", open("example-file", "rb")) }
payload = {
"payload": "{
\"business_data\": {
\"business_address\": {
\"city\": \"San Francisco\",
\"country\": \"US\",
\"line1\": \"500 Terry Francois Blvd\",
\"postal_code\": \"94158\",
\"state\": \"CA\"
},
\"business_email\": \"ops@lovelace.example.com\",
\"business_phone\": \"+14155550199\",
\"business_type\": \"llc\",
\"dba\": \"Lovelace Analytics\",
\"formation_date\": \"2021-04-12\",
\"ownership\": [
{
\"name\": \"Ada Lovelace\",
\"ownership_pct\": 100,
\"role\": \"founder\"
}
],
\"website\": \"https://lovelace.example.com\"
},
\"business_ein\": \"12-3456789\",
\"business_legal_name\": \"Lovelace Analytics LLC\"
}",
"files": "<string>"
}
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, data=payload, files=files, headers=headers)
print(response.text)const form = new FormData();
form.append('payload', '{
"business_data": {
"business_address": {
"city": "San Francisco",
"country": "US",
"line1": "500 Terry Francois Blvd",
"postal_code": "94158",
"state": "CA"
},
"business_email": "ops@lovelace.example.com",
"business_phone": "+14155550199",
"business_type": "llc",
"dba": "Lovelace Analytics",
"formation_date": "2021-04-12",
"ownership": [
{
"name": "Ada Lovelace",
"ownership_pct": 100,
"role": "founder"
}
],
"website": "https://lovelace.example.com"
},
"business_ein": "12-3456789",
"business_legal_name": "Lovelace Analytics LLC"
}');
form.append('files', '<string>');
form.append('files.items', '{
"fileName": "example-file"
}');
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
options.body = form;
fetch('https://api-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}', 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-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"payload\"\r\n\r\n{\r\n \"business_data\": {\r\n \"business_address\": {\r\n \"city\": \"San Francisco\",\r\n \"country\": \"US\",\r\n \"line1\": \"500 Terry Francois Blvd\",\r\n \"postal_code\": \"94158\",\r\n \"state\": \"CA\"\r\n },\r\n \"business_email\": \"ops@lovelace.example.com\",\r\n \"business_phone\": \"+14155550199\",\r\n \"business_type\": \"llc\",\r\n \"dba\": \"Lovelace Analytics\",\r\n \"formation_date\": \"2021-04-12\",\r\n \"ownership\": [\r\n {\r\n \"name\": \"Ada Lovelace\",\r\n \"ownership_pct\": 100,\r\n \"role\": \"founder\"\r\n }\r\n ],\r\n \"website\": \"https://lovelace.example.com\"\r\n },\r\n \"business_ein\": \"12-3456789\",\r\n \"business_legal_name\": \"Lovelace Analytics LLC\"\r\n}\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files\"\r\n\r\n<string>\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files.items\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n{\r\n \"fileName\": \"example-file\"\r\n}\r\n-----011000010111000001101001--",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: multipart/form-data"
],
]);
$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-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}"
payload := strings.NewReader("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"payload\"\r\n\r\n{\r\n \"business_data\": {\r\n \"business_address\": {\r\n \"city\": \"San Francisco\",\r\n \"country\": \"US\",\r\n \"line1\": \"500 Terry Francois Blvd\",\r\n \"postal_code\": \"94158\",\r\n \"state\": \"CA\"\r\n },\r\n \"business_email\": \"ops@lovelace.example.com\",\r\n \"business_phone\": \"+14155550199\",\r\n \"business_type\": \"llc\",\r\n \"dba\": \"Lovelace Analytics\",\r\n \"formation_date\": \"2021-04-12\",\r\n \"ownership\": [\r\n {\r\n \"name\": \"Ada Lovelace\",\r\n \"ownership_pct\": 100,\r\n \"role\": \"founder\"\r\n }\r\n ],\r\n \"website\": \"https://lovelace.example.com\"\r\n },\r\n \"business_ein\": \"12-3456789\",\r\n \"business_legal_name\": \"Lovelace Analytics LLC\"\r\n}\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files\"\r\n\r\n<string>\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files.items\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n{\r\n \"fileName\": \"example-file\"\r\n}\r\n-----011000010111000001101001--")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}")
.header("Authorization", "Bearer <token>")
.body("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"payload\"\r\n\r\n{\r\n \"business_data\": {\r\n \"business_address\": {\r\n \"city\": \"San Francisco\",\r\n \"country\": \"US\",\r\n \"line1\": \"500 Terry Francois Blvd\",\r\n \"postal_code\": \"94158\",\r\n \"state\": \"CA\"\r\n },\r\n \"business_email\": \"ops@lovelace.example.com\",\r\n \"business_phone\": \"+14155550199\",\r\n \"business_type\": \"llc\",\r\n \"dba\": \"Lovelace Analytics\",\r\n \"formation_date\": \"2021-04-12\",\r\n \"ownership\": [\r\n {\r\n \"name\": \"Ada Lovelace\",\r\n \"ownership_pct\": 100,\r\n \"role\": \"founder\"\r\n }\r\n ],\r\n \"website\": \"https://lovelace.example.com\"\r\n },\r\n \"business_ein\": \"12-3456789\",\r\n \"business_legal_name\": \"Lovelace Analytics LLC\"\r\n}\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files\"\r\n\r\n<string>\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files.items\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n{\r\n \"fileName\": \"example-file\"\r\n}\r\n-----011000010111000001101001--")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-sandbox.finogates.com/v1/platform/users/kyb/start/{user_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request.body = "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"payload\"\r\n\r\n{\r\n \"business_data\": {\r\n \"business_address\": {\r\n \"city\": \"San Francisco\",\r\n \"country\": \"US\",\r\n \"line1\": \"500 Terry Francois Blvd\",\r\n \"postal_code\": \"94158\",\r\n \"state\": \"CA\"\r\n },\r\n \"business_email\": \"ops@lovelace.example.com\",\r\n \"business_phone\": \"+14155550199\",\r\n \"business_type\": \"llc\",\r\n \"dba\": \"Lovelace Analytics\",\r\n \"formation_date\": \"2021-04-12\",\r\n \"ownership\": [\r\n {\r\n \"name\": \"Ada Lovelace\",\r\n \"ownership_pct\": 100,\r\n \"role\": \"founder\"\r\n }\r\n ],\r\n \"website\": \"https://lovelace.example.com\"\r\n },\r\n \"business_ein\": \"12-3456789\",\r\n \"business_legal_name\": \"Lovelace Analytics LLC\"\r\n}\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files\"\r\n\r\n<string>\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"files.items\"; filename=\"example-file\"\r\nContent-Type: application/octet-stream\r\n\r\n{\r\n \"fileName\": \"example-file\"\r\n}\r\n-----011000010111000001101001--"
response = http.request(request)
puts response.read_body{
"status_code": 123,
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"approved_at": "2023-11-07T05:31:56Z",
"rejected_at": "2023-11-07T05:31:56Z",
"decline_reason": "<string>",
"user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"subject_email": "<string>",
"subject_name": "<string>",
"business_legal_name": "<string>",
"business_ein": "<string>",
"business_type": "<string>",
"dba": "<string>",
"website": "<string>",
"registration_number": "<string>",
"formation_date": "<string>",
"mcc": "<string>",
"business_description": "<string>",
"business_email": "<string>",
"business_phone": "<string>",
"phone_country_code": "<string>",
"address": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"zip": "<string>",
"contact_first_name": "<string>",
"contact_last_name": "<string>",
"contact_email": "<string>",
"business_documents": [
"<string>"
],
"ownership": [
{
"name": "<string>",
"role": "<string>",
"ownership_pct": 50
}
]
},
"query_generated_time": 123
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Body
multipart/form-data
The business verification details, sent as JSON text.
Show child attributes
Show child attributes
Example:
{
"business_data": {
"business_address": {
"city": "San Francisco",
"country": "US",
"line1": "500 Terry Francois Blvd",
"postal_code": "94158",
"state": "CA"
},
"business_email": "ops@lovelace.example.com",
"business_phone": "+14155550199",
"business_type": "llc",
"dba": "Lovelace Analytics",
"formation_date": "2021-04-12",
"ownership": [
{
"name": "Ada Lovelace",
"ownership_pct": 100,
"role": "founder"
}
],
"website": "https://lovelace.example.com"
},
"business_ein": "12-3456789",
"business_legal_name": "Lovelace Analytics LLC"
}
⌘I

